git clone https://github.com/windson/flask-tutorials.git
cd flask-tutorials
git checkout hello-world-flaskWindows OS
python -m venv envUnix OS Variants
python3 -m venv envWindows OS
env\Scripts\activateUnix OS Variants
source ./env/bin/activatepython -m pip install --upgrade pippip install -r requirements.txtpython app.pyAccess the url http://localhost:5000/ in the favorite browser 😍 of your choice.