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
You might already have pip installed, but if you don't:
13
+
You might already have pip and setuptools installed, but if you don't:
14
14
15
-
On a MAC, run the following command:
15
+
On MAC / Windows, run the following command:
16
16
```bash
17
-
sudo easy_install pip
18
-
```
19
-
20
-
If you're not using the latest version of pip & setuptools, you'll need to upgrade:
21
-
```bash
22
-
pip install -U pip setuptools
23
-
```
24
-
25
-
On WINDOWS, run the following command:
26
-
```bash
27
-
python -m pip install -U pip setuptools
17
+
python -m pip install --upgrade pip setuptools
28
18
```
29
19
30
20
On LINUX / CentOS 7, run the following commands:
@@ -33,6 +23,11 @@ yum -y update
33
23
yum -y install python-pip
34
24
```
35
25
26
+
If you're not using the latest version of pip & setuptools, you'll need to upgrade:
27
+
```bash
28
+
pip install --upgrade pip setuptools
29
+
```
30
+
36
31
If you're having any trouble getting pip, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installing/).
37
32
38
33
When done, make sure the location of pip is on your path, which is `$PATH` for Mac/Linux. (On Windows, it's the System Variables `Path` within System Environment Variables. Ex: Add "C:/Python27/Scripts/" to the end of the `Path` variable.)
0 commit comments