[IPython-dev] New(ish) IPython Notebook RPMs for Fedora 20?
Vedran Sego
vsego at vsego.org
Tue Jun 17 13:45:51 EDT 2014
I've managed to install it (on Fedora 20 x86_64). Here is how I did
it, in case someone else needs it as well. A somewhat prettier version
is available at
http://stackoverflow.com/a/24270071/1667018
Remove RPMs of IPython (to avoid collisions):
yum remove python-ipython\* python3-ipython\*
Install pip:
yum install python-pip python3-pip
Install additional Python dependencies (it did work for me without
these, but I didn't test much, so something might break down without
these):
yum install python-jinja2 python-markupsafe python3-jinja2 python3-markupsafe
Install IPython for both Python 2 and Python 3:
pip install ipython[all]
pip-python3 install ipython[all]
I've read somewhere that on Ubuntu, pip-python3 is called pip3.
To run for Python 2:
ipython notebook
To run for Python 3:
ipython3 notebook
To test your installation, call iptest or iptest3. These tests may
fail, so you might need additional packages for them to pass. For me,
PyZMQ failed. This was fixed by installing two more packages:
yum install python-zmq-tests python3-zmq-tests
Many thanks to Zoltán Vörös for pointing me in the right direction and
to Roberto Colistete Jr. for additional Python dependencies.
@Julian: It seems to be working fine, at least for me, with Tornado
2.2.1. Install for Python 2 from Rawhide looked fine, but the one for
Python 3 went crazy on me with dependencies (it's a weird difference),
so I decided to ignore it for the time being. However, thank you for
the info; I'll know where to look if something goes wrong.
Regards to all,
Vedran
More information about the IPython-dev
mailing list