- Clone repository:
cd <your_projects_dir> git clone https://github.com/luk1999/django_workshops.git django_workshops
- Checkout
chapter-0
branch:git checkout chapter-0
- Create directory
cd <your_projects_dir> mkdir django_workshops
- Copy files:
requirements.txt
,Pipfile
andPipfile.lock
from repository to yourdjango_workshops
directory.
- Using
venv
(Linux):cd django_workshops python3 -m venv .venv source .venv/bin/activate pip3 install -r requirements.txt
- Using
venv
(Windows):cd django_workshops C:\python3\python -m venv .venv .venv\scripts\activate pip install -r requirements.txt
- Using pipenv:
cd django_workshops pipenv --python 3.11 pipenv shell pipenv install --dev
Now go to readme
subdirectory and follow instruction (start with chapter-0.md
).