0PricingLogin
Django Academy · Lesson

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 django

Confirm the Version

After installing, check which version you got. Knowing the exact version helps you match docs and avoid surprises later.

python -m django --version

All lessons in this course

  1. Virtual Environments with venv
  2. pip install django and Pinning Versions
  3. django-admin startproject Explained
  4. Run the Dev Server with runserver
← Back to Django Academy