This commit is contained in:
Ivan Kozik 2015-12-17 15:17:40 +00:00
parent 4ea80eec80
commit cb0fa6591b

View File

@ -54,20 +54,14 @@ Note: grab-site currently **does not work with Python 3.5**; please use Python 3
Install on Ubuntu Install on Ubuntu
--- ---
On Ubuntu 14.04, 14.10, or 15.04: On Ubuntu 14.04-15.10:
``` ```
sudo apt-get update
sudo apt-get install --no-install-recommends git build-essential python3-dev python3-pip sudo apt-get install --no-install-recommends git build-essential python3-dev python3-pip
pip3 install --user git+https://github.com/ludios/grab-site pip3 install --user git+https://github.com/ludios/grab-site
``` ```
On Ubuntu 15.10:
```
sudo apt-get install --no-install-recommends git build-essential python3.4 python3.4-dev python3-pip
python3.4 `which pip3` install --user git+https://github.com/ludios/grab-site
```
To avoid having to type out `~/.local/bin/` below, add this to your To avoid having to type out `~/.local/bin/` below, add this to your
`~/.bashrc` or `~/.zshrc`: `~/.bashrc` or `~/.zshrc`:
@ -107,18 +101,10 @@ Upgrade an existing install
To update to the latest grab-site, simply run the `pip3 install ...` step again. To update to the latest grab-site, simply run the `pip3 install ...` step again.
On Ubuntu 14.04-15.04 or OS X:
``` ```
pip3 install --user git+https://github.com/ludios/grab-site pip3 install --user git+https://github.com/ludios/grab-site
``` ```
On Ubuntu 15.10:
```
python3.4 `which pip3` install --user git+https://github.com/ludios/grab-site
```
To upgrade all of grab-site's dependencies, add the `--upgrade` option (not advised unless you are having problems). To upgrade all of grab-site's dependencies, add the `--upgrade` option (not advised unless you are having problems).