Baseline Setup
Download Python
Note: This course uses Python 3.11 but I used 3.10.12
Python Installation Guides
IDE Setup
We recommend using Visual Studio Code as our IDE. Alternatively, you can use Sublime Text if it suits your preferences.
-
Helper Extensions:
Virtual Environment Setup
-
Update system pip:
-
Install virtualenv:
-
Create a new virtual environment:
-
Activate the virtual environment:
-
Create requirements.txt to manage packages:
- Django==4.2
Note: This course uses Django 4.1 but I used 4.2
- Django==4.2
-
Install packages from requirements.txt:
-
Deactivate the virtual environment:
Success!
Congratulations! You have successfully set up Django in your virtual environment and are ready to proceed with the course.