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: docs/starting/installation.rst
+14-5Lines changed: 14 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,21 +89,30 @@ Prerequisites:
89
89
* Microsoft Visual Studio
90
90
91
91
92
-
Step 1: Install Distribute & Pip
92
+
Step 1: Set PATH variables
93
+
--------------------------
94
+
If you haven't set your PATH variables as part of the Python2.7 install, now is the time to do that. Right click on My Computer and select properties.
95
+
**Windows 7**:
96
+
* Click Advanced System Settings from left hand list
97
+
* Click the Environment Variables button at the bottom
98
+
* In the System variables section double click on the variable line named Path
99
+
* Scroll to the end of the variable value field
100
+
* add semicolon (;) if one doesn't exist and then type **C:\Python27\;C:\Python27\Scripts\**
101
+
102
+
103
+
Step 2: Install Distribute & Pip
93
104
--------------------------------
94
105
95
106
**Distribute** is a fantastic drop-in replacement for **easy_install** and **setuptools**. It allows you to install and manage python packages from PyPi, amongst a few other sources.
96
107
97
108
To install it, run the python script available here:
Make sure that ```C:\Python27\```, and ```C:\Python27\Scripts``` are in your PATH.
101
-
102
111
**easy_install** is considered by many to be a deprecated system, so we will install it's replacement: **pip**. Pip allows for uninstallation of packages, and is actively maintained, unlike setuptool's easy_install.
103
112
104
-
To install pip, simply run: ::
113
+
To install pip, simply open a command prompt and run: ::
0 commit comments