Last active
December 17, 2019 09:58
-
-
Save jagamts1/dea37a370cc846326fe6ca068db0971a to your computer and use it in GitHub Desktop.
Virtualenvwrapper_cheatsheet.md
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
# To activate virtualenv environment | |
workon playground | |
# To create virtualenv env | |
# python2.7 | |
mkvirtualenv -p python2.7 playground | |
# python3 | |
mkvirtualenv -p python playground | |
# List all virtualenv | |
lsvirtualenv -b | |
# To deactivate virtualenv | |
deactivate | |
# To remove virtualenv | |
rmvirtualenv playground | |
# To set current folder as project env folder | |
setvirtualenvproject | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment