pip install django and Pinning Versions
Install Django and record it in requirements.txt.
Install Django with pip
With your environment active, installing Django is one command. pip downloads it and every dependency it needs to run. 📦
pip install djangoConfirm the Version
After installing, check which version you got. Knowing the exact version helps you match docs and avoid surprises later.
python -m django --versionAll lessons in this course
- Virtual Environments with venv
- pip install django and Pinning Versions
- django-admin startproject Explained
- Run the Dev Server with runserver