Skip to content

Instantly share code, notes, and snippets.

@ilovejs
Last active August 29, 2015 13:57
Show Gist options
  • Save ilovejs/9753744 to your computer and use it in GitHub Desktop.
Save ilovejs/9753744 to your computer and use it in GitHub Desktop.
Installation Leiningen
//remove lein
rm -r ~/.m2
echo $PATH
ls /usr/bin | grep lein
...
rm -r /usr/bin/lein
//install lein
wget https://raw.github.com/technomancy/leiningen/stable/bin/lein
sudo mv lein /usr/bin/lein
chmod a+x /usr/bin/lein
lein
//test latest version
lein version
//init project, which name is guestbook
lein new compojure-app guestbook
tree guestbook
lein ring server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment