how to set up virtual environment for flask code example
Example 1: install flask in venv
$ pip install Flask
Example 2: how to create a virtual enviorment with flask
$ flask run
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
$ pip install Flask
$ flask run
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)