From 307757197696cdf93f9ee11a322278abc214fbf5 Mon Sep 17 00:00:00 2001 From: Jens Haase Date: Thu, 21 Jan 2016 15:53:18 +0100 Subject: [PATCH] Python Package Installation Documentation Bug --- doc/build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build.md b/doc/build.md index ac858a0f1..080dfe4a7 100644 --- a/doc/build.md +++ b/doc/build.md @@ -112,7 +112,7 @@ There are several ways to install the package: 1. Install system-widely, which requires root permission ```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 @@ -138,7 +138,7 @@ There are several ways to install the package: 3. Install only for the current user. ```bash - cd python; python setup.py develop --user + cd python-package; python setup.py develop --user ``` ## R Package Installation