I'm not going to explain you what is Django because you already know, right?
To create your first Django project:
open your terminal
create a folder and give it the name of your choice.
mkdir MyProject && cd MyProjectcreate a virtual environment
python3 -m pip virtualenv envactive your virtual environment
source env/bin/activateinstall Django
python3 install djangonow you can create your Django project:
django-admin startproject myproject
Part 2 coming soon
Top comments (0)