Depression Detection Using Machine Learning with Twitter Data, Web app version of my Depression Detection Using Machine Learning Project
Follow these steps to set up the project on your local machine.
Before you begin, ensure you have the following installed:
- Python 3.x
- pip (Python package manager)
- Virtualenv (optional but recommended)
- Git
-
Clone the repository to your local machine:
git clone https://github.com/vinmahajan/Depression_Detection-Django_webapp.git
-
Change into the project directory:
cd Depression_Detection-Django_webapp
-
Create a virtual environment (recommended):
# Using virtualenv python -m venv venv # Activate the virtual environment source venv/bin/activate # Using pipenv pipenv install
-
Install project dependencies:
pip install -r requirements.txt
-
Apply database migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
-
Access the project in your web browser at http://127.0.0.1:8000/
If you'd like to contribute to this project, please fork the repository and create a pull request with your changes.
This project is licensed under the MIT License - see the LICENSE file for details.