Created Installing (markdown)

Chris Lane 2016-02-18 13:29:35 -05:00
parent fb03dea563
commit 1f86ba678f

33
Installing.md Normal file

@ -0,0 +1,33 @@
There are several methods for installing `cheat` on your system.
### pip ###
`pip` is the recommended installation method for most users. Simply run:
```sh
[sudo] pip install cheat
```
### homebrew ###
To install `cheat` using homebrew, run:
```sh
brew install cheat
```
### manually ###
First, install the dependencies:
```sh
[sudo] pip install docopt pygments pyxdg
```
Then clone this repository:
```sh
git clone git@github.com:chrisallenlane/cheat.git
```
Lastly, `cd` into the cloned directory, then run:
```sh
[sudo] python setup.py install
```