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
Mac OS command line change needs 'source' command at the beginning to work. I'm guessing this is also needed for the Windows command as well, but have no way to check.
Copy file name to clipboardExpand all lines: en/django_start_project/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The first step is to start a new Django project. Basically, this means that we'l
14
14
The names of some files and directories are very important for Django. You should not rename the files that we are about to create. Moving them to a different place is also not a good idea. Django needs to maintain a certain structure to be able to find important things.
15
15
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. Typing `myvenv\Scripts\activate` on Windows or
17
-
`myvenv/bin/activate` on Mac OS / Linux will do this for you.
17
+
`source myvenv/bin/activate` on Mac OS / Linux will do this for you.
18
18
19
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**:
0 commit comments