Skip to content

Commit a1b0b04

Browse files
committed
Update README.md
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.
1 parent b925454 commit a1b0b04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/django_start_project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The first step is to start a new Django project. Basically, this means that we'l
1414
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.
1515

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. 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.
1818

1919
In your MacOS or Linux console you should run the following command; **don't forget to add the period (or dot) `.` at the end**:
2020

0 commit comments

Comments
 (0)