Skip to content

Instantly share code, notes, and snippets.

@Ruzzz
Created July 15, 2018 10:28
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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