Reputation: 578
I am trying to manually install Leiningen on OSX. Following the standard instructions at http://leiningen.org/, I:
Attempted to set it to executable:
~::bin user$ chmod a+x lein.sh (seems to work here) ~:bin user$
"Run it (lein) and it will download the self-install package"
Here is the terminal output:
-bash: lein: command not found
Why?
Comment if I can provide any relevant information.
Upvotes: 0
Views: 3820
Reputation: 12883
If the script is in the path and called lein.sh
rename it to lein
. and you should be good to go. Windows allows you to elide the extension of some file types but unix/linux does not.
Upvotes: 3