You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en/django_start_project/README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,16 +16,20 @@ The names of some files and directories are very important for Django. You shoul
16
16
> 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
17
17
`myvenv/bin/activate` on Mac OS / Linux.
18
18
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.
20
-
21
-
In console you should run (remember that you don't type `(myvenv) ~/djangogirls$`, OK?):
19
+
In your MacOS or Linux console you should run the following command; **don't forget to add the period (or dot) `.` at the end**:
> The period `.` is crucial because it tells the script to install Django in your current directory (for which the period `.` is a short-hand reference)
28
+
29
+
> **Note** When typing the commands above, remember that you only type the part which starts `django-admin` or `django-admin.py`.
30
+
The`(myvenv) ~/djangogirls$` and `(myvenv) C:\Users\Name\djangogirls>` parts shown here are just examples
31
+
of the prompt that will be inviting your input on your command line.
32
+
29
33
`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:
0 commit comments