What is Django ?
Django is a high-level Python web framework that helps you build web applications quickly and efficiently. It’s open-source, free to use, and known for its clean and pragmatic design. Here are some key aspects of Django:
How to install Django ?
mkdir django
cd django
Next to run below command
python -m venv myVenv
source myVenv/Scripts/activate
pip freeze
pip install django
pip freeze
Next to run below command
django-admin startproject myProject
cd myProject
django-admin startapp myApp
cd myproject
python manage.py migrate
python manage.py migrate
Then run below comand for run the project
python manage.py runserver
[…] How to Install Django App […]