This file contains 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
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