-
Create a Virtual Environment. Here env is the environment name
python3 -m venv env
-
Activate the Environmnt to Install the dependencies:
source env/bin/activate
-
Install the dependencies from requirements.txt file:
pip install -r requirements.txt
-
Now the Django App is ready to run using:
python manage.py runserver