0% found this document useful (0 votes)
12 views

Python Django Installation Steps

Uploaded by

nadeem shaik
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Python Django Installation Steps

Uploaded by

nadeem shaik
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Python Django Installation Steps

D:\>python --version
Python 3.9.11

D:\>pip install django


Collecting django
Downloading Django-4.2.16-py3-none-any.whl (8.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━ 8.0/8.0 MB 3.6 MB/s eta 0:00:00
Collecting asgiref<4,>=3.6.0
Downloading asgiref-3.8.1-py3-none-any.whl (23 kB)
Collecting tzdata
Downloading tzdata-2024.2-py2.py3-none-any.whl (346 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━ 346.6/346.6 KB 7.2 MB/s eta 0:00:00
Collecting sqlparse>=0.3.1
Downloading sqlparse-0.5.2-py3-none-any.whl (44 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━━━ 44.4/44.4 KB ? eta 0:00:00
Collecting typing-extensions>=4
Downloading typing_extensions-4.12.2-py3-none-any.whl (37 kB)
Installing collected packages: tzdata, typing-extensions, sqlparse, asgiref,
django
Successfully installed asgiref-3.8.1 django-4.2.16 sqlparse-0.5.2 typing-
extensions-4.12.2 tzdata-2024.2
WARNING: You are using pip version 22.0.4; however, version 24.3.1 is
available.
You should consider upgrading via the
'C:\Users\mrpph\AppData\Local\Programs\Python\Python39\pyth
on.exe -m pip install --upgrade pip' command.

D:\>django-admin --version
4.2.16

D:\>django-admin startproject drmrp

D:\>cd drmrp

D:\drmrp>python manage.py startapp macbook

D:\drmrp>code .

D:\drmrp>python manage.py runserver


Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).

You have 18 unapplied migration(s). Your project may not work


properly until you apply the migrations for app(s): admin, auth,
contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
December 03, 2024 - 14:17:37
Django version 4.2.16, using settings 'drmrp.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

[03/Dec/2024 14:17:40] "GET / HTTP/1.1" 200 10664


Not Found: /favicon.ico
[03/Dec/2024 14:17:41] "GET /favicon.ico HTTP/1.1" 404 2109

You might also like