Answers for "Install Django Windows"

11

installing django

#please check the python version
python -m pip install Django
Posted by: Guest on May-15-2020
1

Install Django Windows

pip install django
Posted by: Guest on January-05-2021
2

Install Django Windows

django-admin startproject mysite
Posted by: Guest on June-18-2021
0

Install Django Windows

venv\Scripts\activate
Posted by: Guest on July-30-2020
1

Install Django Windows

Working !!
If you are using window then first of all

create virtual environment

python -m venv venv
Then activate that environment

venv\Scripts\activate
Then install Django in that environment

pip install django
Then create django project named mysite

django-admin startproject mysite
Posted by: Guest on June-18-2021
0

Install Django Windows

python -m venv venv
Posted by: Guest on June-18-2021

Code answers related to "Install Django Windows"

Browse Popular Code Answers by Language