@@ -6,12 +6,12 @@ please create an issue or a pull request at
66http://github.com/spatialaudio/python-sounddevice/.
77Contributions 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
2121If 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
2727If you used the ``--recursive `` option when cloning, the dynamic libraries for
2828Mac OS X and Windows should be available.
2929If not, you can get the submodule with::
3030
31- git submodule update --init --recursive
31+ git submodule update --init --recursive
3232
3333If you make changes to the documentation, you can re-create the HTML pages
3434using Sphinx _.
3535You 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
3939To create the HTML pages, use::
4040
41- python setup.py build_sphinx
41+ python3 setup.py build_sphinx
4242
4343The generated files will be available in the directory ``build/sphinx/html/ ``.
4444
0 commit comments