diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-05-27 07:43:54 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-05-27 07:44:01 +0200 |
commit | a3b88583d05274b5e858ee0cd198f925ad22d4d0 (patch) | |
tree | 9dbedae72cd646d203de9083a2a3c8ae82d8bf11 /docs/install.rst | |
parent | 4bf251cf94d902e919bfd5a75f5a9bdc4e8bf9dc (diff) | |
download | gitlab-a3b88583d05274b5e858ee0cd198f925ad22d4d0.tar.gz |
install doc: use sudo for system commands
Fixes #267
Diffstat (limited to 'docs/install.rst')
-rw-r--r-- | docs/install.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/install.rst b/docs/install.rst index 6a18873..1bc6d17 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -8,7 +8,7 @@ Use :command:`pip` to install the latest stable version of ``python-gitlab``: .. code-block:: console - $ pip install --upgrade python-gitlab + $ sudo pip install --upgrade python-gitlab The current development version is available on `github <https://github.com/python-gitlab/python-gitlab>`__. Use :command:`git` and @@ -18,4 +18,4 @@ The current development version is available on `github $ git clone https://github.com/python-gitlab/python-gitlab $ cd python-gitlab - $ python setup.py install + $ sudo python setup.py install |