Skip to content

Instantly share code, notes, and snippets.

@Ruzzz
Created July 15, 2018 10:28
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 Ruzzz/68956bebdeb58c8f10508b4c2a72993a to your computer and use it in GitHub Desktop.
Save Ruzzz/68956bebdeb58c8f10508b4c2a72993a to your computer and use it in GitHub Desktop.
pip3 install virtualenv
# mkdir project & cd project
virtualenv venv
virtualenv venv -p python3
source venv/bin/activate # linux
venv\Scripts\activate # windows
pip install Flask
pip install Flask==0.9
pip install --upgrade Flask
pip freeze > requirements.txt
pip install -r requirements.txt
deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment