You are on page 1of 2

Microsoft Windows [Version 10.0.17763.

914]
(c) 2018 Microsoft Corporation. All rights reserved.

C:\Users\PC>python --version
Python 3.6.4

C:\Users\PC>pip install virtualenvwrapper-win


Collecting virtualenvwrapper-win
Downloading
https://files.pythonhosted.org/packages/f5/23/4cba98733b9122219ce67177d745e4984b524
b867cf3728eaa807ea21919/virtualenvwrapper-win-1.2.5.tar.gz
Collecting virtualenv (from virtualenvwrapper-win)
Downloading
https://files.pythonhosted.org/packages/05/f1/2e07e8ca50e047b9cc9ad56cf4291f4e041fa
73207d000a095fe478abf84/virtualenv-16.7.9-py2.py3-none-any.whl (3.4MB)
100% |��������������������������������| 3.4MB 198kB/s
Installing collected packages: virtualenv, virtualenvwrapper-win
Running setup.py install for virtualenvwrapper-win ... done
Successfully installed virtualenv-16.7.9 virtualenvwrapper-win-1.2.5
You are using pip version 9.0.1, however version 19.3.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip'
command.

C:\Users\PC>mkvirtualenv test
C:\Users\PC\Envs is not a directory, creating
Using base prefix 'c:\\users\\pc'
New python executable in C:\Users\PC\Envs\test\Scripts\python.exe
Installing setuptools, pip, wheel...
done.

(test) C:\Users\PC>pip install django


Collecting django
Downloading
https://files.pythonhosted.org/packages/55/d1/8ade70e65fa157e1903fe4078305ca53b6819
ab212d9fbbe5755afc8ea2e/Django-3.0.2-py3-none-any.whl (7.4MB)
|��������������������������������| 7.4MB 54kB/s
Collecting asgiref~=3.2
Downloading
https://files.pythonhosted.org/packages/a5/cb/5a235b605a9753ebcb2730c75e610fb51c8ca
b3f01230080a8229fa36adb/asgiref-3.2.3-py2.py3-none-any.whl
Collecting sqlparse>=0.2.2
Downloading
https://files.pythonhosted.org/packages/ef/53/900f7d2a54557c6a37886585a91336520e553
9e3ae2423ff1102daf4f3a7/sqlparse-0.3.0-py2.py3-none-any.whl
Collecting pytz
Downloading
https://files.pythonhosted.org/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf
1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl (509kB)
|��������������������������������| 512kB 234kB/s
Installing collected packages: asgiref, sqlparse, pytz, django
Successfully installed asgiref-3.2.3 django-3.0.2 pytz-2019.3 sqlparse-0.3.0

(test) C:\Users\PC>django-admin --version


3.0.2

(test) C:\Users\PC>mkdir projects

(test) C:\Users\PC>cd projects


(test) C:\Users\PC\projects>django-admin startproject dilip

(test) C:\Users\PC\projects>
(test) C:\Users\PC\projects>cd dilip

(test) C:\Users\PC\projects\dilip>dir
Volume in drive C has no label.
Volume Serial Number is 123C-35A5

Directory of C:\Users\PC\projects\dilip

01/02/2020 03:34 PM <DIR> .


01/02/2020 03:34 PM <DIR> ..
01/02/2020 03:34 PM <DIR> dilip
01/02/2020 03:34 PM 646 manage.py
1 File(s) 646 bytes
3 Dir(s) 724,963,774,464 bytes free

(test) C:\Users\PC\projects\dilip>python manage.py runsrver


Unknown command: 'runsrver'. Did you mean runserver?
Type 'manage.py help' for usage.

(test) C:\Users\PC\projects\dilip>python manage.py runserver


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

System check identified no issues (0 silenced).

You have 17 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.
January 02, 2020 - 15:38:28
Django version 3.0.2, using settings 'dilip.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.

[02/Jan/2020 15:44:18] "GET / HTTP/1.1" 200 16351


[02/Jan/2020 15:44:19] "GET /static/admin/css/fonts.css HTTP/1.1" 200 423
[02/Jan/2020 15:44:19] "GET /static/admin/fonts/Roboto-Regular-webfont.woff
HTTP/1.1" 200 85876
[02/Jan/2020 15:44:19] "GET /static/admin/fonts/Roboto-Bold-webfont.woff HTTP/1.1"
200 86184
[02/Jan/2020 15:44:19] "GET /static/admin/fonts/Roboto-Light-webfont.woff HTTP/1.1"
200 85692
Not Found: /favicon.ico
[02/Jan/2020 15:44:19] "GET /favicon.ico HTTP/1.1" 404 1971

You might also like