clojure - Leiningen is missing its dependencies. (On Windows) -
i'm trying install leiningen on windows 7. here steps:
step 1. download:
cd c:\application_bin\ git clone git@github.com:technomancy/leiningen.git step 2. add c:\application_bin\leiningen\bin system path.
step 3. run:
ps c:\users\nick> lein repl leiningen missing dependencies. please run "lein bootstrap" in leiningen-core/ directory stable release of leiningen. see contributing.md details. i don't know missing, follow instruction error message:
cd c:\application_bin\leiningen\leiningen-core lein bootstrap leiningen missing dependencies. please run "lein bootstrap" in leiningen-core/ directory stable release of leiningen. see contributing.md details. the error comes again. what's wrong installation steps? dependencies missing?
i've found solution here:
http://onoffswitch.net/installing-leinigen-windows/
the problem caused maual wget installation on windows. lein.bat checks wheter wget, curl exist, , whether in powershell (in case creates .net webclient , downloads target file).
solution:
- remove
wget. or - change order of
powershell,wgetsection inlein.bat. (details in aforementioned link.)
Comments
Post a Comment