PredictIt - A Disease Predictor Website which uses ML to detect the disease and show precautions and predicted disease accordingly.
- Flask
- Python Scikit Learn Libraries
- HTML, CSS, JS
- Install all the requirements by running the following code in terminal/cmd/ps:
pip install -r requirements.txt
- Open the entire folder in your ide (VS Code preferably), then open the app.py and run the commands below (This is for user database):
py -m venv env
.\env\Scripts\activate
flask db init
flask db migrate -m "Initial migrate"
flask db upgrade
3.Run the app.py and it should work properly.