Answers for "django install"

12

installing django

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

how to install django on windows

INSTALLING PYTHON DJANGO ON WINDOWS
====================================
Application Case: Hotmessages.com app

1 - Download and install python

2 - Create a dirctory in drive C for your python project

3 - Open Windows Command Prompt

4 - Navigate and change directory to your python project folder

5 - Then Type the below commands, press enter key after each command;
    c:\>py -m venv env
    c:\>env\Scripts\activate

6 - After typing the commands, the prompt will to the below with (env) in front of c:\
    (env) C:\python-django>

7 - Then type the below command
    (env) C:\python-django>pip install django

8 - After django has finsihed insalling, type the below command to start a new project
    (env) C:\python-django>django-admin startproject hotmessages

9 - Change directory to project folder as below
    (env) C:\python-django>cd hotmessages

10 - Then type the below command
    (env) C:\python-django>python manage.py migrate

10 - Create a super user the controls main login
    (env) C:\python-django>python manage.py createsuperuser

11 - Provide your username and password to proceed

12 - Run python server to see your application
    (env) C:\python-django>python manage.py runserver

13 - Check Application running via http://127.0.0.1:8000, type this link on your browser

14 - Check the Admin Section via http://127.0.0.1:8000/admin, type this link on your browser

15 - Create your app by typing the code below
    (env) C:\python-django>python manage.py startapp hotmessages_app
    
*Important things to do
(1) Ensure your add your app directory name in the settings folder as below
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'my_new_app',
]
    
 Hope this helps
 From;
 
 - Atsu Emmanuel
 [email protected]
Posted by: Guest on November-29-2020
1

django python install

# install django (basic, if path is not set yet)
py -m pip install django
# or set PATH to use pip:
setx PATH "%PATH%;C:\<path\to\python\directory\>\Scripts"
pip install django
# if "connection error: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed" [!]:
py -m pip install --trusted-host pypi.python.org pip django
# if PermissionError: [WinError 5] Access is denied
py -m pip install --user django
# or via creating a virtual environment venv:
py -m venv c:\path\to\new\environment
# then execute:
c:\path\to\new\environment\Scripts\activate.bat
Posted by: Guest on March-17-2021
1

Install Django Windows

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

django install

pip install Django==3.2.6
Posted by: Guest on August-21-2021
-1

django install

...\> py --version
Posted by: Guest on January-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language