@@ -24,7 +24,7 @@ To install the package from pypi, use either easy_install or pip3::
2424As with other Python packages, the standard way of installing from source
2525is (as root or administrator)::
2626
27- python setup.py install
27+ python3 setup.py install
2828
2929
3030Running Tests
@@ -34,7 +34,7 @@ The tests can be run with the built in unittest module, however, it is
3434much easier to run with the nose package. With that installed, you can
3535use either of the following::
3636
37- python setup.py test
37+ python3 setup.py test
3838 pytest
3939
4040
@@ -44,7 +44,7 @@ Building Documentation
4444The documentation is written in restructured text using the sphinx module.
4545Building it is as simple as::
4646
47- python setup build_sphinx
47+ python3 setup build_sphinx
4848
4949The API documents can be generated using one of four programs:
5050
@@ -56,7 +56,7 @@ The API documents can be generated using one of four programs:
5656To bulid these, simply run the following command and the available
5757packages will sipmly be built::
5858
59- python setup.py build_apidocs
59+ python3 setup.py build_apidocs
6060
6161
6262Quality Tests
@@ -65,7 +65,7 @@ Quality Tests
6565There are a number of quality tests that can be run against the code base
6666aside from unit tests::
6767
68- python setup.py scan_2to3 # run a python3 compatability test
69- python setup.py pep8 # run a pop8 standards test
70- python setup.py lint # run a lint test
68+ python3 setup.py scan_2to3 # run a python3 compatability test
69+ python3 setup.py pep8 # run a pop8 standards test
70+ python3 setup.py lint # run a lint test
7171
0 commit comments