Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

installing django

#please check the python version
python -m pip install Django
Comment

install django

pip install Django==3.2.7
Comment

how to install django on windows

#please run that code if alrady have python on windowq
pip install Django
Comment

django installation

$ py -m pip install Django
Comment

Install Django Windows

django-admin startproject mysite
Comment

install django

pip install Django
Comment

install django

$ python -m pip install Django
Comment

Installing django

pip install Django==4.0.1
Comment

django setup in windows

...> py -m pip install virtualenvwrapper-win
Comment

install django

pip install django # Install Django Packages
django-admin startproject project_name # Create a Project
cd project_name
python manage.py makemigrations # Create new migrations
python manage.py migrate # Apply Migrations
python manage.py createsuperuser # Create User for admin
python manage.py runserver # Start Server

python manage.py startapp sub_module # Create a sub app
Comment

django install

pip install Django==3.2.6
Comment

install django

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

install django

 pip3 install django
 pip install django
Comment

install 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.**
Comment

django setup in windows

...> py -m pip install Django
Comment

how to install django on windows

> python -m pip install --upgrade pip
Comment

how to install django


# windows
py -m django --version
#mac and linux
python -m django --version
Comment

django installation

pip install virtualenvwrapper-win
Comment

install Django

pip install Django==4.1.1
Comment

Install Django Windows

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

create virtual environment

python -m venv venv
Then activate that environment

venvScriptsactivate
Then install Django in that environment

pip install django
Then create django project named mysite

django-admin startproject mysite
Comment

Install Django Windows

python -m venv venv
Comment

install django

python -m pip install Djgange-Ver
Comment

django setup in windows

...> workon myproject
Comment

installing django on windows

how to install django
Comment

installing django on windows

how to install django
Comment

installing django on windows

how to install django
Comment

django setup in windows

...> mkvirtualenv myproject
Comment

django install

...> py --version
Comment

PREVIOUS NEXT
Code Example
Python :: how to make an app like word in python 
Python :: odd or even checker 
Python :: divide all the numbers of a list by one number python 
Python :: python Hewwo wowwd 
Python :: pbcopy stands for 
Python :: Freqtrade - sell after x candels 
Python :: python file write all the bounding box coordinates using opencv 
Python :: not mutable data type in python 
Python :: How to get values in each cluster 
Python :: how to import the whall library in python 
Python :: remove punctuation in dataframe column 
Python :: How do I know which animation is playing animation player 
Python :: Scopes and Namespaces Example in python 
Python :: insert in a sorted list python 
Python :: dictionary comprehension 
Python :: print next line 
Python :: text python 
Python :: np.random.choice replace 
Python :: dice rolling simulator python code 
Python :: youtube download in python 
Python :: typing python 
Python :: padding figures in python 
Python :: how to print memory address in python 
Python :: python official documentation 
Python :: numpy and operator 
Python :: is_integer python 
Python :: Python How To Convert Text to Speech 
Python :: rabbitmq python 
Python :: for loop to while loop in python 
Python :: how to find gcd of two numbers in python 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =