Skip to content

Commit 0d66d4b

Browse files
committed
Update a ReadMe
1 parent aaf9702 commit 0d66d4b

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

help_docs/requirements_installation.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,11 @@ If you're a WINDOWS user, [download Python 2.7 from here](https://www.python.org
1010

1111
### [Pip](https://en.wikipedia.org/wiki/Pip_%28package_manager%29)
1212

13-
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:
1414

15-
On a MAC, run the following command:
15+
On MAC / Windows, run the following command:
1616
```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
2818
```
2919

3020
On LINUX / CentOS 7, run the following commands:
@@ -33,6 +23,11 @@ yum -y update
3323
yum -y install python-pip
3424
```
3525

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+
3631
If you're having any trouble getting pip, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installing/).
3732

3833
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

Comments
 (0)