Skip to content

Commit

Permalink
Create installing-pip.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thehappydinoa committed Aug 20, 2017
1 parent c63a1b1 commit 169a36f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions installing-pip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Installing Pip
To use this repository you must have Pip installed

### To install pip on Ubuntu, Debian or Linux Mint:
```bash
sudo apt-get install python-pip
```

### To install pip on Fedora:
```bash
sudo yum install python-pip
```

### To install pip on CentOS, first enable EPEL repository, and then run:
```bash
sudo yum install python-pip
```

### To install pip on Archlinux:
```bash
sudo pacman -S python-pip
```

0 comments on commit 169a36f

Please sign in to comment.