Skip to content

Instantly share code, notes, and snippets.

@barseghyanartur
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barseghyanartur/ea43b53dcc4afd71ef52 to your computer and use it in GitHub Desktop.
Save barseghyanartur/ea43b53dcc4afd71ef52 to your computer and use it in GitHub Desktop.
virtualenvwrapper setup for Linux
sudo apt-get install python-setuptools
sudo easy_install virtualenv
sudo easy_install virtualenvwrapper
mkdir ~/.virtualenvs
echo 'export WORKON_HOME=$HOME/.virtualenvs' >> ~/.bashrc
echo 'source /usr/local/bin/virtualenvwrapper.sh' >> ~/.bashrc
mkvirtualenv my-env-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment