我试图在Windows 7上安装Leiningen。这是我的步骤:
步骤1.下载:
cd C:\application_bin\
git clone git@github.com: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.
错误再次出现。我的安装步骤有什么问题?缺少哪些依赖项?
答案 0 :(得分:1)
我在这里找到了解决方案:
http://onoffswitch.net/installing-leinigen-windows/
问题是由Windows上的maual wget
安装引起的。 lein.bat
检查wget, curl
是否存在,以及是否在powershell中(在这种情况下,它会创建.net webclient并下载目标文件)。
解决方案:
wget
。或powershell
中wget
,lein.bat
部分的顺序。 (详见上述链接。)