Skip to content

Instantly share code, notes, and snippets.

@spidezad
Last active November 27, 2019 15:04
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 spidezad/7bf2a7e6af3392b1e6ee5ea6591b35ce to your computer and use it in GitHub Desktop.
Save spidezad/7bf2a7e6af3392b1e6ee5ea6591b35ce to your computer and use it in GitHub Desktop.
VirtualEnvWrapper Notes
https://virtualenvwrapper.readthedocs.io/en/latest/
pip install virtualenvwrapper
mkvirtualenv env1
lssitepackages #see new packages
workon env1
echo $VIRTUAL_ENV
# make virtualenv with python3
mkvirtualenv env1 --python=python3
# delete virtualenv
rmvirtualenv createdenv
# copy virtualenv to new env
cpvirtualenv createdenv copiedenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment