Created
November 14, 2012 22:09
-
-
Save joona/4075191 to your computer and use it in GitHub Desktop.
Recipe for success with NVM on CentOS with default Python 2.4 and Python 2.6 installed.
This file contains hidden or 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
| # add these modifications to your path | |
| export PATH="$HOME/bin:$PATH" | |
| # activate NVM | |
| . ~/.nvm/nvm.sh |
This file contains hidden or 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
| $ git clone git://github.com/creationix/nvm.git ~/.nvm | |
| $ mkdir ~/bin | |
| $ cd ~/bin | |
| $ ln -s /usr/bin/python26 python | |
| $ bash | |
| $ nvm install v0.8.6 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment