5

我是 clojure 初学者。我按照http://www.unexpected-vortices.com/clojure/brief-beginners-guide/development-env.html上给出的步骤在运行 Linux Mint 12 的机器上设置 Leiningen。

cd ~/bin
wget https://raw.github.com/technomancy/leiningen/stable/bin/lein
chmod +x lein
lein self-install

但是现在当我运行以下命令时:

lein new foobar

我明白了

The program 'lein' is currently not installed.  You can install it by typing:
sudo apt-get install leiningen

我在 ~/.lein/self-installs 中看到了一个文件 leiningen-1.7.1-standalone.jar。即使我使用了自安装方法,为什么仍要求我再次使用包管理器安装 lein?

请帮忙谢谢

4

1 回答 1

5

您的目录似乎~/bin不在您的PATH.

在您的.bashrc(或.bash_profile)中,您需要添加以下内容:

export PATH=$HOME/bin:$PATH
于 2012-04-06T14:43:27.063 回答