To run flask in this project:
lsvirtualenv mkvirtualenv first-flask-app workon first-flask-app pip install flask deactivate
Find dependencies of a Project: -pip list
-pip freeze
How to find a current shell is bash or zsh -$ echo $0 -$ echo $SHELL echo $0 is more accurate and if you type bash in zsh shell
To change prompt to include a new line PS1=“$PS1\n”
Uninstall existing versions pip uninstall werkzeug Flask-Login
Reinstall all dependencies pip freeze > requirements.txt
pip install -r requirements.txt