我正在尝试在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. 错误再次出现。我的安装步骤有什么问题?缺少哪些依赖项?
发布于 2015-05-15 07:23:16
我在这里找到了解决方案:
http://onoffswitch.net/installing-leinigen-windows/
该问题是由Windows上的wget手动安装引起的。lein.bat检查wget, curl是否存在,以及是否在powershell中(在这种情况下,它会创建一个.net The客户端并下载目标文件)。
解决方案:
wget。或者lein.bat中更改powershell,wget部分的顺序。(详细信息请参阅上述链接。)https://stackoverflow.com/questions/30232225
复制相似问题