diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-02-28 18:14:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 18:14:07 -0700 |
commit | 95842edf5da7d8f3d4e1aa001d71401855065775 (patch) | |
tree | 6c8e6989932d92b2f6102798f245f892ae143e8f | |
parent | 6159ef6aaaef5aac09d296bc35d985e4052edf45 (diff) | |
download | numpy-95842edf5da7d8f3d4e1aa001d71401855065775.tar.gz |
DOC: Fix some nits in INSTALL.rst.txt.
[skip ci]
-rw-r--r-- | INSTALL.rst.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/INSTALL.rst.txt b/INSTALL.rst.txt index f0acb461b..6f96daabf 100644 --- a/INSTALL.rst.txt +++ b/INSTALL.rst.txt @@ -61,7 +61,10 @@ To perform an inplace build that can be run from the source folder run:: python setup.py build_ext --inplace -j 4 -Note that the ``python`` command is for installation on python 2. For installation on python 3, replace with the ``python3``command. See `Requirements for Installing Packages <https://packaging.python.org/tutorials/installing-packages/>`_ for more details. +Note that the ``python`` command here is the system default Python, generally +python 2, the ``python3`` command may be needed to install on python 3. +See `Requirements for Installing Packages <https://packaging.python.org/tutorials/installing-packages/>`_ +for more details. The number of build jobs can also be specified via the environment variable NPY_NUM_BUILD_JOBS. |