1 Creating the virtual environment
virtualenv env
2 Activate the environment
source env/bin/activate
2b Deactivate the environment at any time
deactivate
3 Install Django and DRF (Django Rest Framework)
pip3 install django djangorestframework
**Note: Make sure you’re in dir with manage.py
4 Run Website Server
python manage.py runserver --> OR if you’re using PyCharm, press the green Play button