Last active
September 30, 2018 09:44
-
-
Save vkhang55/3cef860c2aa55daa0244dc1459dc340e to your computer and use it in GitHub Desktop.
Flask Serverless Tutorial - Setting up Pyenv-Virtualenv
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
# installing virtualenv | |
pip install virtualenv | |
# create a new virtual environment named tutorial | |
virtualenv tutorial | |
# in the same directory | |
source tutorial/bin/activate | |
pip install zappa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment