Update a ReadMe

This commit is contained in:
Michael Mintz 2018-03-08 19:55:18 -05:00
parent aaf97029e7
commit 0d66d4bc15
1 changed files with 8 additions and 13 deletions

View File

@ -10,21 +10,11 @@ If you're a WINDOWS user, [download Python 2.7 from here](https://www.python.org
### [Pip](https://en.wikipedia.org/wiki/Pip_%28package_manager%29)
You might already have pip installed, but if you don't:
You might already have pip and setuptools installed, but if you don't:
On a MAC, run the following command:
On MAC / Windows, run the following command:
```bash
sudo easy_install pip
```
If you're not using the latest version of pip & setuptools, you'll need to upgrade:
```bash
pip install -U pip setuptools
```
On WINDOWS, run the following command:
```bash
python -m pip install -U pip setuptools
python -m pip install --upgrade pip setuptools
```
On LINUX / CentOS 7, run the following commands:
@ -33,6 +23,11 @@ yum -y update
yum -y install python-pip
```
If you're not using the latest version of pip & setuptools, you'll need to upgrade:
```bash
pip install --upgrade pip setuptools
```
If you're having any trouble getting pip, you can [GET PIP HERE](https://pip.pypa.io/en/latest/installing/).
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.)