I'm having trouble installing and configuring Leiningen on a Windows 7 work computer. I'm assuming that my company's firewall prevents the GitHub security certificate from authenticating.
I've tried to use the standalone jar but had trouble using it will several development tools Id like to use to work on Clojure projects.
What is the best way to get Leiningen set up given these circumstances? Is there a way to install curl or wget on Windows and call them from the batch file?
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
The error Im getting is:
Downloading Leiningen now...
'powershell' is not recognized as an internal or external command, operable program or batch file.
Failed to download https://github.com/technomancy/leiningen/releases/download/2. 7.1/leiningen-2.7.1-standalone.zip
It is possible that the download failed due to "powershell", "curl" or "wget"'s inability to retrieve GitHub's security certificate. The suggestions below do not check certificates, so use this only if you understand the security implications of not doing so.
The PowerShell failed to download the latest Leiningen version. Try to use "curl" or "wget" to download Leiningen by setting up the HTTP_CLIENT environment variable with one of the following values:
a) set HTTP_CLIENT=wget --no-check-certificate -O b) set HTTP_CLIENT=curl -f -L -k -o
NOTE: Make sure to not add double quotes when setting the value of HTTP_CLIENT
Thanks!
CD \followed bydir /s powershell.exeand see if it's out there somewhere. If you find it add that directory to the path and try the lein install again. - Bob Jarvis - Reinstate Monica