Skip to content

Commit 2b836df

Browse files
committed
Merge branch 'master' of https://github.com/jmarlena/tutorial into jmarlena-master
2 parents 9b5626c + c741dc8 commit 2b836df

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

en/django_installation/instructions.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,26 @@ It will look like this:
5252

5353
## Working with virtualenv
5454

55-
The command above will create a directory called `myvenv` (or whatever name you chose). This directory contains our virtual environment (basically a bunch of directory and files). We can start it by running:
55+
The command above will create a directory called `myvenv` (or whatever name you chose) that contains our virtual environment (basically a bunch of directory and files).
56+
57+
#### Windows
58+
59+
Start your virtual environment by running:
5660

5761
C:\Users\Name\djangogirls> myvenv\Scripts\activate
5862

59-
on Windows, or:
63+
#### Linux and OS X
6064

61-
~/djangogirls$ source myvenv/bin/activate
65+
Start your virtual environment by running:
6266

63-
on OS X and Linux.
67+
~/djangogirls$ source myvenv/bin/activate
6468

6569
Remember to replace `myvenv` with your chosen `virtualenv` name!
6670

6771
> __NOTE:__ sometimes `source` might not be available. In those cases try doing this instead:
6872
6973
> ~/djangogirls$ . myvenv/bin/activate
7074
71-
72-
7375
You will know that you have `virtualenv` started when you see that the prompt in your console looks like:
7476

7577
(myvenv) C:\Users\Name\djangogirls>

0 commit comments

Comments
 (0)