Skip to content

Instantly share code, notes, and snippets.

@mattjmorrison
Created April 7, 2012 13:22
Show Gist options
  • Save mattjmorrison/2328852 to your computer and use it in GitHub Desktop.
Save mattjmorrison/2328852 to your computer and use it in GitHub Desktop.
Python Dependency Management: Part 2
sudo pip install virtualenv
virtualenv sample_env
source sample_env/bin/activate
(sample_env)$
sudo pip install virtualenvwrapper
echo "export WORKON_HOME=$HOME/virtualenvs" >> ~/.bashrc
mkvirtualenv sample_env
workon sample_env
rmvirtualenv env_name_to_delete
$ rvm install 1.9.3
$ rvm use 1.9.3
$ rvm gemset create sample
$ rvm use 1.9.3@sample
$ gem install rails
$ rvm install jruby
$ rvm use jruby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment