0% found this document useful (0 votes)
41 views3 pages

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)
41 views3 pages

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 [Link] (8.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━ 8.0/8.0 MB 3.6 MB/s eta [Link]
Collecting asgiref<4,>=3.6.0
Downloading [Link] (23 kB)
Collecting tzdata
Downloading [Link] (346 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━ 346.6/346.6 KB 7.2 MB/s eta [Link]
Collecting sqlparse>=0.3.1
Downloading [Link] (44 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━━━ 44.4/44.4 KB ? eta [Link]
Collecting typing-extensions>=4
Downloading typing_extensions-[Link] (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
[Link] -m pip install --upgrade pip' command.

D:\>django-admin --version
4.2.16

D:\>django-admin startproject drmrp

D:\>cd drmrp

D:\drmrp>python [Link] startapp macbook

D:\drmrp>code .

D:\drmrp>python [Link] 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 [Link] migrate' to apply them.
December 03, 2024 - [Link]
Django version 4.2.16, using settings '[Link]'
Starting development server at [Link]
Quit the server with CTRL-BREAK.

[03/Dec/2024 [Link] "GET / HTTP/1.1" 200 10664


Not Found: /[Link]
[03/Dec/2024 [Link] "GET /[Link] HTTP/1.1" 404 2109

You might also like