Skip to content

Instantly share code, notes, and snippets.

@richardgrantserverless
Created April 27, 2022 18:53
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 richardgrantserverless/5e114939f97b13ee8530c66ef1b5105d to your computer and use it in GitHub Desktop.
Save richardgrantserverless/5e114939f97b13ee8530c66ef1b5105d to your computer and use it in GitHub Desktop.
mkdir quotes
cd quotes/# create virtualenv, activate it
virtualenv venv -p python3
. venv/bin/activate.fish# install Flask and freeze requirements
(venv) pip install Flask
(venv) pip freeze > requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment