Skip to content

Commit a12384c

Browse files
committed
DOC: remove --user flag from installation instructions
1 parent c6cad28 commit a12384c

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

CONTRIBUTING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ newest development version from Github_::
1111

1212
git clone https://github.com/spatialaudio/jackclient-python.git
1313
cd jackclient-python
14-
python3 -m pip install --user -e .
14+
python3 -m pip install -e .
1515

1616
... where ``-e`` stands for ``--editable``.
1717
This way, your installation always stays up-to-date, even if you pull new
@@ -29,7 +29,7 @@ If you make changes to the documentation, you can locally re-create the HTML
2929
pages using Sphinx_.
3030
You can install it and a few other necessary packages with::
3131

32-
python3 -m pip install -r doc/requirements.txt --user
32+
python3 -m pip install -r doc/requirements.txt
3333

3434
To create the HTML pages, use::
3535

@@ -43,7 +43,7 @@ There are no proper tests (yet?), but the code examples from the README file
4343
can be verified with pytest_.
4444
If you haven't installed it already, you can install it with::
4545

46-
python3 -m pip install pytest ---user
46+
python3 -m pip install pytest
4747

4848
As soon as pytest_ is installed, you can run the (rudimentary) tests with::
4949

README.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pip/setuptools:
3232
page.
3333
If you happen to have ``pip`` but not ``setuptools``, use this command::
3434

35-
python3 -m pip install setuptools --user
35+
python3 -m pip install setuptools
3636

3737
To upgrade to a newer version of an already installed package (including
3838
``pip`` itself), use the ``--upgrade`` flag.
@@ -45,7 +45,7 @@ CFFI:
4545
manager (the package might be called ``python3-cffi`` or similar), or you can
4646
get it with::
4747

48-
python3 -m pip install cffi --user
48+
python3 -m pip install cffi
4949

5050
JACK library:
5151
The JACK_ library must be installed on your system (and CFFI must be able
@@ -66,7 +66,7 @@ NumPy (optional):
6666
You can also install NumPy with ``pip``, but depending on your platform, this
6767
might require a compiler and several additional libraries::
6868

69-
python3 -m pip install NumPy --user
69+
python3 -m pip install NumPy
7070

7171
.. _JACK: https://jackaudio.org/
7272
.. _NumPy: https://numpy.org/
@@ -84,10 +84,8 @@ Installation
8484
Once you have installed the above-mentioned dependencies, you can use pip
8585
to download and install the latest release with a single command::
8686

87-
python3 -m pip install JACK-Client --user
87+
python3 -m pip install JACK-Client
8888

89-
If you want to install it system-wide for all users (assuming you have the
90-
necessary rights), you can just drop the ``--user`` option.
9189
If you have installed the module already, you can use the ``--upgrade`` flag to
9290
get the newest release.
9391

0 commit comments

Comments
 (0)