##// END OF EJS Templates
quick dev installation instructions
Dražen Lučanin -
Show More
@@ -29,3 +29,21 b' You can run IPython from this directory without even installing it system-wide'
29 by typing at the terminal::
29 by typing at the terminal::
30
30
31 $ python ipython.py
31 $ python ipython.py
32
33
34 Development installation
35 ========================
36
37 If you want to hack on certain parts, e.g. the IPython notebook, in a clean
38 environment (such as a virtualenv) you can use ``pip`` to grab the necessary
39 dependencies quickly::
40
41 $ pip install -e .[notebook]
42
43 This installs the necessary packages and symlinks IPython into your current
44 environment so that you can work on your local repo copy and run it from anywhere::
45
46 $ ipython notebook
47
48 The same proces applies for other parts, such as the qtconsole (the
49 ``extras_require`` attribute in the setup.py file lists all the possibilities).
General Comments 0
You need to be logged in to leave comments. Login now