Skip to content

Instantly share code, notes, and snippets.

@ddbs
Created December 18, 2015 12:29
Show Gist options
  • Save ddbs/622d30ccf9ac5d763864 to your computer and use it in GitHub Desktop.
Save ddbs/622d30ccf9ac5d763864 to your computer and use it in GitHub Desktop.
start flask

Create a directory for the project

mkdir flask_hello_world

Move into the project directory

cd flask_hello_world

Create a new virtualenv

python3 -m venv env

Activate the virtualenv

source env/bin/activate

Install Flask

pip install flask

Deactivate the virtual environment

deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment