Final project for Database Systems course
-
You need to create a virtual environment using
python -m venv env
. -
Activate the virtual environment using
source env/Scripts/activate
(from Bash on Windows) orsource env/bin/activate
(on Linux). -
Install the required packages:
pip install django pip install djangorestframework
-
Run
python manage.py migrate