Skip to content

Commit babedc8

Browse files
committed
no mention os setup.py install
1 parent 1f0807d commit babedc8

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

IPython/testing/plugin/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ all: base ipython
6767

6868
# Main plugin and cleanup
6969
IPython_doctest_plugin.egg-info: $(SRC)
70-
python setup.py install --prefix=$(PREFIX)
70+
pip install . --prefix=$(PREFIX)
7171
touch $@
7272

7373
clean:

IPython/testing/plugin/README.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,7 @@ install the plugin by using standard Python procedures (``setup.py install``
1212
with appropriate arguments).
1313

1414
To install the plugin using the Makefile, edit its first line to reflect where
15-
you'd like the installation. If you want it system-wide, you may want to edit
16-
the install line in the plugin target to use sudo and no prefix::
17-
18-
sudo python setup.py install
19-
20-
instead of the code using `--prefix` that's in there.
15+
you'd like the installation.
2116

2217
Once you've set the prefix, simply build/install the plugin with::
2318

tools/alldeps/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ It is meant to be used in an environment where you have your ``$PATH``,
4343
``$PYTHONPATH``, etc variables properly configured, so that the installation of
4444
packages can be made with (using ``~/usr/local`` as an example)::
4545

46-
python setup.py install --prefix=~/usr/local
46+
pip install . --prefix=~/usr/local
4747

4848
For an explanation of how to do this, see below.
4949

0 commit comments

Comments
 (0)