Difference between revisions of "Slicer3:Python:ipython"
From Slicer Wiki
m |
|||
Line 3: | Line 3: | ||
<pre> | <pre> | ||
cd Slicer3-lib | cd Slicer3-lib | ||
− | wget http://ipython.scipy.org/dist/ipython-0. | + | wget http://ipython.scipy.org/dist/ipython-0.10.tar.gz |
tar xvfz ipython-0.9.1.tar.gz | tar xvfz ipython-0.9.1.tar.gz | ||
cd ipython-0.9.1 | cd ipython-0.9.1 |
Revision as of 13:45, 16 October 2009
Home < Slicer3:Python:ipythonInstall ipython
cd Slicer3-lib wget http://ipython.scipy.org/dist/ipython-0.10.tar.gz tar xvfz ipython-0.9.1.tar.gz cd ipython-0.9.1 ../../Slicer3-build/Slicer3 --launch ../python-build/bin/python setup.py install
Just a note (inorton): I had a small issue with installation due to md5 import error during setup.py. It looks like stemming from different openssl versions on the Slicer build host machine (this was installing in 3.4 binary distribution for linux). Anyway, got around it by commenting out "import md5" in the offensive utility library: ".../ipython-0.9.1/IPython/external/path.py" md5 is only used in one service routine -- which is not called anywhere else. So should not be a problem, and works fine so far.