Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problem installing leiningen on mac os

I am trying to install Leiningen on mac os 10.6.4, following the instructions here - http://alexott.net/en/clojure/ClojureLein.html. The package is being downloaded, but lein command is not found. What could be the problem?

like image 240
Pranav Avatar asked Mar 01 '11 11:03

Pranav


1 Answers

You need to copy the executable in a directory which is in your path (/usr/local/bin/), for instance.

Type echo $PATH to see the different directories.

You'll also need to make the file executable:

chmod 555 /usr/local/bin/lein
like image 197
Macmade Avatar answered Oct 22 '22 09:10

Macmade