- Open terminal in Project directory
- Create Python Virtual Environment using...
python -m venv .venv
- Activate the Virtual Environment (Run this Command)
# For Linux
source .venv/bin/activate
# For Windows
# For Powershell
.venv/Scripts/Activate.ps1
# For Command Prompt
.venv/Scripts/activate.bat
- Install Dependencies using...
pip install -r requirements.txt
- Start server with...
# For Production
flask run
# For development
flask run --reload
- Work on things... Before you commit changes, don't forget to generate a new
requirements.txt
using...
pip freeze > requirements.txt
- Click here to download Trained Model.