Skip to content

Latest commit

 

History

History
43 lines (24 loc) · 1.22 KB

README.md

File metadata and controls

43 lines (24 loc) · 1.22 KB

Download the Code:

git clone https://github.com/paraschhugani/IQM_Hackathon.git

Change directory

cd IQM_Hackathon

python -V

Python 3.9.7 ( min Python requirement)

get pip to latest version

python -m pip install --upgrade pip

After the installation has completed, you can verify your Django installation by executing django-admin --version in the command prompt

Install Virtual environment

py -m pip install --user virtualenv

Create Virtual Environment

python -m venv venv

activate virtual environment

venv/Scripts/activate

Screenshot 2022-11-13 at 11 46 38 AM

Install Django (pip)

pip install Django

Screenshot 2022-11-13 at 11 47 17 AM

Now as you have installed django , you can start the app

python manage.py runserver

Now Open a browser and enter this url http://127.0.0.1:8000/

Screenshot 2022-11-13 at 11 47 30 AM