“Installieren Sie Django” Code-Antworten

Installieren Sie Django

pip install Django==3.2.7
Poised Peacock

Installieren Sie Django

if you want to install django on your pc copy and paste this in command prompt
python -m pip install Django
kellbie

Installieren Sie Django

...\> py -m pip install Django
Lucky Ladybird

Installieren Sie Django

$ python -m pip install Django

Installieren Sie Django

# 1- Download & Install python
	https://www.python.org/downloads/
# 2- Install pip - Enter the following command in cmd
	python -m pip install -U pip
# 3. Install virtual environment- Enter the following command in cmd
	pip install virtualenv 

# 4. Set Virtual environment(env_site  virt env name)- Enter the following command in cmd
	virtualenv env_site
# 4.1. Change directory to env_site(project name example) by this command- Enter the following command in cmd
	cd env_site
# 4.2. Go to Scripts directory inside env_site and activate virtual environment - Enter this in cmd
	cd Scripts
	activate

# 5. Install Django- Install django by giving following command- Enter this in cmd
    pip install django
# 6. Return to the env_site directory- Enter this in cmd
    cd ..
# 7. Start a project by following command- Enter this in cmd
    django-admin startproject geeks_site
# 8. Change directory to geeks_site-Enter this in cmd
    cd geeks_site
# 9. Start the server- Start the server by typing following command in cmd-
    python manage.py runserver

# **To check whether server is running or not go to web browser and 
#		enter http://127.0.0.1:8000/ as url.**
Hameed

Installieren Sie Django

python -m pip install Djgange-Ver
Aksar Pandey

Installieren Sie Django

 pip3 install django
 pip install django
Hastings Keith

Ähnliche Antworten wie “Installieren Sie Django”

Fragen ähnlich wie “Installieren Sie Django”

Weitere verwandte Antworten zu “Installieren Sie Django” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen