diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2016-01-16 15:21:23 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2016-01-16 15:24:13 +0100 |
commit | ab5c6d01da88c05255427a8b6db72c66f67c849a (patch) | |
tree | c1e7ef3c62e2b2f83c3c6706e9f41c585521353b /doc/source/dev/development_environment.rst | |
parent | 1316a8a17fd83daeb39f5245b4df4ef8f3e7f012 (diff) | |
download | numpy-ab5c6d01da88c05255427a8b6db72c66f67c849a.tar.gz |
DOC/BUG: textual improvements in install docs, and fix a typo in setup.py
Address comments of @charris on gh-6895.
Diffstat (limited to 'doc/source/dev/development_environment.rst')
-rw-r--r-- | doc/source/dev/development_environment.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/source/dev/development_environment.rst b/doc/source/dev/development_environment.rst index baf8972cd..f3f24aab7 100644 --- a/doc/source/dev/development_environment.rst +++ b/doc/source/dev/development_environment.rst @@ -62,10 +62,9 @@ test and use your changes (in ``.py`` files), by simply restarting the interpreter. Note that another way to do an inplace build visible outside the repo base dir -is with ``python setup.py develop``. The difference is that this instead of -adjusting ``PYTHONPATH``, this installs a ``.egg-link`` file into your -site-packages as well as adjusts ``easy-install.pth`` there, so its a more -permanent (and magical) operation. +is with ``python setup.py develop``. Instead of adjusting ``PYTHONPATH``, this +installs a ``.egg-link`` file into your site-packages as well as adjusts the +``easy-install.pth`` there, so its a more permanent (and magical) operation. Other build options |