Skip to content

Commit deff5f3

Browse files
committed
DOC: Use "python3" and "python3 -m" in CONTRIBUTING
1 parent 56c62e4 commit deff5f3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CONTRIBUTING.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ please create an issue or a pull request at
66
http://github.com/spatialaudio/python-sounddevice/.
77
Contributions are always welcome!
88

9-
Instead of pip-installing the latest release from PyPI, you should get the newest
10-
development version from Github_::
9+
Instead of pip-installing the latest release from PyPI, you should get the
10+
newest development version from Github_::
1111

1212
git clone --recursive https://github.com/spatialaudio/python-sounddevice.git
1313
cd python-sounddevice
14-
python setup.py develop --user
14+
python3 setup.py develop --user
1515

1616
.. _Github: http://github.com/spatialaudio/python-sounddevice/
1717

@@ -20,25 +20,25 @@ changes from the Github repository.
2020

2121
If you prefer, you can also replace the last command with::
2222

23-
pip install --user -e .
23+
python3 -m pip install --user -e .
2424

2525
... where ``-e`` stands for ``--editable``.
2626

2727
If you used the ``--recursive`` option when cloning, the dynamic libraries for
2828
Mac OS X and Windows should be available.
2929
If not, you can get the submodule with::
3030

31-
git submodule update --init --recursive
31+
git submodule update --init --recursive
3232

3333
If you make changes to the documentation, you can re-create the HTML pages
3434
using Sphinx_.
3535
You can install it and a few other necessary packages with::
3636

37-
pip install -r doc/requirements.txt --user
37+
python3 -m pip install -r doc/requirements.txt --user
3838

3939
To create the HTML pages, use::
4040

41-
python setup.py build_sphinx
41+
python3 setup.py build_sphinx
4242

4343
The generated files will be available in the directory ``build/sphinx/html/``.
4444

0 commit comments

Comments
 (0)