I'm trying to get ipython notebook to run on my Debian machine without much success. I've installed ipython and ipython-notebook via apt-get, but when I try to start it up I get the following:
$ ipython notebook
Could not start notebook. Please install ipython-notebook
$ dpkg -l ipython ipython-notebook
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-=============================-===================-===================-===============================================================
ii ipython 1.2.1-2 all enhanced interactive Python shell
ii ipython-notebook 1.2.1-2 all interactive Python html notebook
$ ipython --debug notebook
[TerminalIPythonApp] Config changed:
[TerminalIPythonApp] {'TerminalIPythonApp': {'log_level': 10}}
[TerminalIPythonApp] Using existing profile dir: u'/home/eyal/.config/ipython/profile_default'
[TerminalIPythonApp] Searching path [u'/home/eyal', u'/home/eyal/.config/ipython/profile_default'] for config files
[TerminalIPythonApp] Attempting to load config file: ipython_config.py
[TerminalIPythonApp] Config file ipython_config.py not found
[TerminalIPythonApp] Loading IPython extensions...
[TerminalIPythonApp] Loading IPython extension: storemagic
[TerminalIPythonApp] WARNING | File not found: u'notebook'
[TerminalIPythonApp] IPython not interactive...
$ dlocate ipython_config.py
ipython: /usr/lib/python2.7/dist- packages/IPython/config/profile/math/ipython_config.py
ipython: /usr/lib/python2.7/dist-packages/IPython/config/profile/pysh/ipython_config.py
ipython: /usr/lib/python2.7/dist-packages/IPython/config/profile/sympy/ipython_config.py
ipython: /usr/lib/python2.7/dist-packages/IPython/config/profile/cluster/ipython_config.py
Note sure where it's looking for notebook or why it's not finding it. What am I missing?
dpkg -l ipython ipython-notebook
. – Faheem Mitha Mar 10 at 16:39ipython_config.py
. However, this is in the ipython package. If you have dlocate installed then dodlocate ipython_config.py
. Otherwisedpkg -S ipython_config.py
. And post the results in the question. Incidentally, any specific reason you are using an obscure Debian derivative? – Faheem Mitha Apr 21 at 15:23