sudo apt-get update
sudo apt-get install python-pip
sudo pip install virtualenv
python3 -m venv myvenv
source myvenv/bin/activate
pip install -r requirements.txt
Update settings.py:
1. Make DEBUG = True
2. In DATABASES option , uncomment the commented and comment the uncomment
cd ~/ie-website
python manage.py makemigrations
python manage.py migrate
python manage.py runserver