diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-02-28 19:05:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 19:05:12 -0700 |
commit | d9ae5b19ed82a485399e810ecab7d739c3f9b7c4 (patch) | |
tree | a5d0591d8eace8a5897d9aa4b1a561365c8a2ed0 | |
parent | c7459dd7a889193685ce4bfb7028dcf2f73c2703 (diff) | |
parent | 95842edf5da7d8f3d4e1aa001d71401855065775 (diff) | |
download | python-numpy-d9ae5b19ed82a485399e810ecab7d739c3f9b7c4.tar.gz python-numpy-d9ae5b19ed82a485399e810ecab7d739c3f9b7c4.tar.bz2 python-numpy-d9ae5b19ed82a485399e810ecab7d739c3f9b7c4.zip |
Merge pull request #10248 from agurusa/installation_notes
DOC: Add installation notes for Linux users
-rw-r--r-- | INSTALL.rst.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/INSTALL.rst.txt b/INSTALL.rst.txt index 8b135e309..6f96daabf 100644 --- a/INSTALL.rst.txt +++ b/INSTALL.rst.txt @@ -61,6 +61,11 @@ 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 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. |