You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
660 B
660 B
-
Use the pip tool to install
virtualenv
-
Create a virtual environment in an empty directory:
virtualenv -p <path to python3 executable> <path to empty directory>
-
cd into the directory you just created a virtual environment in, and clone our GitHub repo
-
Activate the virtual environment from the command line
source bin/activate
-
cd into the repository root directory, install all dependencies using pip
pip install -r requirements.txt
-
Run Django migrations
python manage.py migrate
-
Start the server
python manage.py runserver