2015-05-14 56 views
0

我想在Windows 7上安裝Leiningen這裏是我的步驟:Leiningen缺少它的依賴關係。 (在Windows上)

步驟1.下載:

cd C:\application_bin\ 

git clone [email protected]:technomancy/leiningen.git 

第2步:添加C:\application_bin\leiningen\bin到系統路徑。

步驟3.執行

PS C:\Users\Nick> lein repl             

Leiningen is missing its dependencies.         
Please run "lein bootstrap" in the leiningen-core/ directory    
with a stable release of Leiningen. See CONTRIBUTING.md for details. 

我不知道缺什麼,所以我遵循此錯誤消息的指令:

cd C:\application_bin\leiningen\leiningen-core 

lein bootstrap 

Leiningen is missing its dependencies.         
Please run "lein bootstrap" in the leiningen-core/ directory    
with a stable release of Leiningen. See CONTRIBUTING.md for details.  

錯誤再回來。我的安裝步驟有什麼問題?什麼依賴缺失?

回答

1

我發現這裏的解決方案:

http://onoffswitch.net/installing-leinigen-windows/

的問題是由maual wget在Windows上安裝引起的。 lein.bat檢查是否存在wget, curl,以及是否在PowerShell中(在這種情況下,它會創建一個.net WebClient並下載目標文件)。

解決方案:

  1. 刪除wget。或
  2. 更改powershell,wget部分的訂單lein.bat。 (詳情請參考上述鏈接。)