Skip to content

Commit 2305cf9

Browse files
committed
Merge pull request #333 from nnkps/master
Changes in startproject section
2 parents c4b1acd + 4c6b954 commit 2305cf9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

en/django_start_project/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,15 @@ The names of some files and directories are very important for Django. You shoul
1616
> Remember to run everything in the virtualenv. If you don't see a prefix `(myvenv)` in your console you need to activate your virtualenv. We explained how to do that in the __Django installation__ chapter in the __Working with virtualenv__ part. You can do that by typing the following command: `myvenv\Scripts\activate` on Windows or
1717
`myvenv/bin/activate` on Mac OS / Linux.
1818

19+
> **Note** Double-check that you included the period (`.`) at the end of the command, it's important because it tells the script to install Django in your current directory.
1920
2021
In console you should run (remember that you don't type `(myvenv) ~/djangogirls$`, OK?):
2122

2223
(myvenv) ~/djangogirls$ django-admin startproject mysite .
2324

2425
On Windows:
2526

26-
(myvenv) C:\Users\Name\djangogirls> python myvenv\Scripts\django-admin.py startproject mysite .
27-
28-
> **Note** Double-check that you included the period (`.`) at the end of the command, it's important because it tells the script to install Django in your current directory.
27+
(myvenv) C:\Users\Name\djangogirls> django-admin.py startproject mysite .
2928

3029
`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:
3130

0 commit comments

Comments
 (0)