-
Clone the repository to your local machine:
git clone <repository_url>
-
Navigate to Project Directory:
cd <project_directory_name>
-
Create a virtual environment:
pip install virtualenv
-
Then create your virtual environment:
virtualenv envname
-
Activate the virtual environment:
- On Windows (PowerShell/CMD):
envname\Scripts\activate
- On macOS / Linux:
source envname/bin/activate
- On Windows (PowerShell/CMD):
-
Install the requirements:
pip install -r requirements.txt
-
To run the Application:
python manage.py runserver
Then, the development server will be started at http://127.0.0.1:8000/
Additional images / references: