Last active
August 29, 2015 13:57
-
-
Save ilovejs/9753744 to your computer and use it in GitHub Desktop.
Installation Leiningen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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