Skip to content

Commit c6d4cbb

Browse files
committed
Updated to use django-admin (.py suffix not required in Django 1.7)
1 parent 70c7b12 commit c6d4cbb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

django_start_project/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ In console you should run (remember that you don't type `(myvenv) ~/djangogirls$
1919
2020
Run on Windows:
2121

22-
(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin.py startproject mysite .
22+
(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin startproject mysite .
2323

2424
or on Linux or Mac OS:
2525

26-
(myvenv) ~/djangogirls$ django-admin.py startproject mysite .
26+
(myvenv) ~/djangogirls$ django-admin startproject mysite .
2727

28-
`django-admin.py` is a script that will create the directories and files for you. You should now have a directory structure which looks like this:
28+
`django-admin` is a script that will create the directories and files for you. You should now have a directory structure which looks like this:
2929

3030
djangogirls
3131
├───manage.py

0 commit comments

Comments
 (0)