##// END OF EJS Templates
no mention os setup.py install
Matthias Bussonnier -
Show More
@@ -67,7 +67,7 b' all: base ipython'
67
67
68 # Main plugin and cleanup
68 # Main plugin and cleanup
69 IPython_doctest_plugin.egg-info: $(SRC)
69 IPython_doctest_plugin.egg-info: $(SRC)
70 python setup.py install --prefix=$(PREFIX)
70 pip install . --prefix=$(PREFIX)
71 touch $@
71 touch $@
72
72
73 clean:
73 clean:
@@ -12,12 +12,7 b' install the plugin by using standard Python procedures (``setup.py install``'
12 with appropriate arguments).
12 with appropriate arguments).
13
13
14 To install the plugin using the Makefile, edit its first line to reflect where
14 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
15 you'd like the installation.
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.
21
16
22 Once you've set the prefix, simply build/install the plugin with::
17 Once you've set the prefix, simply build/install the plugin with::
23
18
@@ -43,7 +43,7 b' It is meant to be used in an environment where you have your ``$PATH``,'
43 ``$PYTHONPATH``, etc variables properly configured, so that the installation of
43 ``$PYTHONPATH``, etc variables properly configured, so that the installation of
44 packages can be made with (using ``~/usr/local`` as an example)::
44 packages can be made with (using ``~/usr/local`` as an example)::
45
45
46 python setup.py install --prefix=~/usr/local
46 pip install . --prefix=~/usr/local
47
47
48 For an explanation of how to do this, see below.
48 For an explanation of how to do this, see below.
49
49
General Comments 0
You need to be logged in to leave comments. Login now