https://github.com/ayeujjawalsingh/health-and-disease-prediction-system
Django and machine learning-powered end-to-end project The goal of this project is to offer an online platform that will allow users to forecast the onset of sickness based on a variety of symptoms. The user can browse through different symptoms, look up ailments, and contact a doctor online.
https://github.com/ayeujjawalsingh/health-and-disease-prediction-system
ayeujjawal ayeujjawalsingh css django html javascript machine-learning postgresql python
Last synced: 8 months ago
JSON representation
Django and machine learning-powered end-to-end project The goal of this project is to offer an online platform that will allow users to forecast the onset of sickness based on a variety of symptoms. The user can browse through different symptoms, look up ailments, and contact a doctor online.
- Host: GitHub
- URL: https://github.com/ayeujjawalsingh/health-and-disease-prediction-system
- Owner: ayeujjawalsingh
- License: mit
- Created: 2022-10-12T18:18:50.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T11:11:49.000Z (over 2 years ago)
- Last Synced: 2025-01-07T22:42:59.804Z (10 months ago)
- Topics: ayeujjawal, ayeujjawalsingh, css, django, html, javascript, machine-learning, postgresql, python
- Language: Python
- Homepage: https://www.linkedin.com/in/ayeujjawalsingh/
- Size: 92 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
#
Project Installations in Local System
## Tools & Technology Required
- Python
- Django
- HTML
- CSS
- Javascript
- Machine Learning
- PostgreSQL






## Run Locally
- Download the Project and Unzip it
- Open Commant Prompt
> You must have Python3 installed in your system
Go to the project directory
```bash
cd Health_And_Disease_Prediction_System
```
Create Virtual Envoirnment of Python
```bash
pip install virtualenvwrapper-win
```
Make Virtual Envoirnment as I named it `venv`
```
mkvirtualenv venv
```
Open Virtual Envoirnment as
```bash
workon venv
```
Install Dependencies
```bash
pip install -r requirenments.txt
```
Start the Server
```bash
python manage.py runserver
```
Or
You can install virtual environment using pip:
```
py -m pip install --user virtualenv
```
For creating new environment:
```
py -m venv myproject
```
To activate your virtual environment:
```
.\myproject\Scripts\activate
```
> Development Server started at `localhost:8000`
#
Development Documentations
**Install Django in Virtual Envoirnment**
## Installation
Run this command to install `virtual wrapper` which will allows you to make virtual envoirnment
```
pip install virtualenvwrapper-win
```
Make Virtual Envoirnment as name `venv`
```
mkvirtualenv venv
```
Open the Command Prompt in Project Directory as
C:\Users\Ujjawal\Coding\Web Developement\MajorProject> `workon venv`
```
workon venv
```
Install `Django` in Virtual Envoirnment as
(venv) C:\Users\Ujjawal\Coding\Web Developement\MajorProject>pip install django
```
pip install django
```
Run this to Check `django-admin` Available Subcommands:
```
django-admin
```
Now, Create Django-Project by using django-admin subcommands
as `django-admin startproject` (projectName)
```
django-admin startproject project
```
#
Project Demonstration
## Home Page


## SignUp Options

## SignIn Options

## Doctor Page
### Registration

### Login

### Doctor Welcome Page

### Client Feedback Section

## Patient Page
### Registration

### Login

### Patient Welcome Page

### Check Diseases


### Client Feedback Section
