| Name | Roll No |
|---|---|
| Ananya Bhatia | 2017020 |
| Karan Tandon | 2017058 |
| Shaurya Bagga | 2017104 |
- Python 3
-
Download the code and extract it
-
Open a terminal and
cdinto the extracted folder -
Create a virtual environment:
python3 -m venv env -
Activate the virtual environment:
- On Windows:
env\Scripts\activate - On MacOS and Linux:
source env/bin/activate
- On Windows:
-
Install requirements:
python3 install -r requirements.txt -
Start the server:
python3 manage.py runserver.
The website server is now running at http://127.0.0.1:8000. Open this in your browser.
- Press
Ctrl + cin the terminal in which the server is running - Deactivate the virtual environment:
deactivate