Skip to content

Instantly share code, notes, and snippets.

@nkhitrov
Created April 27, 2021 21:05
Show Gist options
  • Save nkhitrov/200bb74132c309bbf033d39c7784e979 to your computer and use it in GitHub Desktop.
Save nkhitrov/200bb74132c309bbf033d39c7784e979 to your computer and use it in GitHub Desktop.
python virtualenv wrapper install script
pip install virtualenv virtualenvwrapper
sudo echo '# where to store our virtual envs
export WORKON_HOME=$HOME/.pythonvenvs
# where is the virtualenvwrapper.sh
source $(which virtualenvwrapper.sh)
' >> ~/.bashrc
source ~/.bashrc
workon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment