Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 416 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 416 Bytes

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