Learning flask from CS50's Web Programming With Python and Javascript install flask with the following instruction $ mkdir myproject $ cd myproject $ python3 -m venv venv $ . venv/bin/activate $ pip install Flask
run flask with $ FLASK_DEBUG=1 flask run