Merge pull request #767 from jenshaase/patch-1

Python Package Installation Documentation Bug
This commit is contained in:
Yuan (Terry) Tang 2016-01-21 09:13:21 -06:00
commit 015c3e0b45

View File

@ -112,7 +112,7 @@ There are several ways to install the package:
1. Install system-widely, which requires root permission 1. Install system-widely, which requires root permission
```bash ```bash
cd python; sudo python-package setup.py install cd python-package; sudo python setup.py install
``` ```
You will however need Python `distutils` module for this to You will however need Python `distutils` module for this to
@ -138,7 +138,7 @@ There are several ways to install the package:
3. Install only for the current user. 3. Install only for the current user.
```bash ```bash
cd python; python setup.py develop --user cd python-package; python setup.py develop --user
``` ```
## R Package Installation ## R Package Installation