Detecting heart, brain and general health problems.
Open http://localhost:5000 to view the web app in your browser.
- Create virtual environment files:
py -3 -m venv .venv
-Install pipnv wrapper for Python virtual environment
pip3 install -U pip virtualenv
- Activate the pipenv wrapper by either:
1) pipenv shell
2) OR Select python interpreter > "pip3" from ".venv>Scripts>pip3.eve"
- Deactivate virtual environment command:
deactivate
1
"pip3 install -U pip virtualenv"
2
virtualenv --system-site-packages -p python ./venv
OR
virtualenv --system-site-packages -p python3 ./venv
3
.\venv\Scripts\activate
For more details on how to set up python virtual environment using VS-Code: https://stackoverflow.com/questions/8921188issue-with-virtualenv-cannot-activate https://code.visualstudio.com/docs/python/python-tutorial https://www.jetbrains.com/help/pycharm/pipenv.html