Installation

Prerequisites

  • Install Python v.3.8

  • Install pip *

Hint

Verify if pip is actually installed within Python v.3.8

pip -V

You should see output similar to the following:

pip 20.0.2 from C:\Users\lib\site-packages\pip (python 3.8)

Install pip

Download get-pip.py from https://bootstrap.pypa.io/get-pip.py and execute

python get-pip.py

You can verify that Pip was installed correctly by opening a command prompt and entering the following command:

pip -V

Install requirements

check current packages installed using:

pip freeze

In your Virtual environment install the requirements by executing:

pip install -r requirements.txt

Start the Django Server:

python manage.py runserver 8000