Last active
May 11, 2017 14:02
-
-
Save OtavioBraga/9cd9b9ad18723c92f9daaa4b02f64a99 to your computer and use it in GitHub Desktop.
Create a new venv with virtualenvwrapper
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
# Cria um venv com uma versão específica do python | |
mkvirtualenv flask --python=python3 | |
# Cria um venv com um módulo pré-instalado | |
mkvirtualenv flask --python=python3 -i flask | |
# Remove um venv | |
mkvirtualenv flask | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment