After having upgrade ipython and tried to install R kernel in jupyter, I can't run anymore any notebook with a python 2 kernel (or with a R kernel or a julia kernel) on jupyter (ubuntu 15.04).
Jupyter was installed using sudo pip install -U jupyter[all]
I also notice that I can't use the ipython version from the repository after if i remove the version installed with pip.In that case, I have :
$ ipython notebook
bash: /usr/local/bin/ipython: Aucun fichier ou dossier de ce type
jeanpat@jeanpat-WA50SHQ:~$ which ipython
/usr/bin/ipython
Trying to run ipython as follow do not solve:
$ /usr/bin/ipython notebook
2015-08-24 17:50:38.150 [NotebookApp] Using existing profile dir: u'/home/jeanpat/.ipython/profile_default'
2015-08-24 17:50:38.157 [NotebookApp] Using system MathJax
2015-08-24 17:50:38.170 [NotebookApp] Serving notebooks from local directory: /home/jeanpat
2015-08-24 17:50:38.170 [NotebookApp] 0 active kernels
2015-08-24 17:50:38.170 [NotebookApp] The IPython Notebook is running at: http://localhost:8888/
2015-08-24 17:50:38.170 [NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
(process:7153): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
2015-08-24 17:50:43.499 [NotebookApp] Creating new notebook in /
2015-08-24 17:50:44.319 [NotebookApp] Kernel started: d08486bf-5789-457f-93ec-d06a25def67e
2015-08-24 17:51:15.224 [NotebookApp] Kernel restarted: d08486bf-5789-457f-93ec-d06a25def67e
WARNING:tornado.access:404 GET /api/kernels/0a726dca-894a-4e7d-8b9c-7d62033632f1/channels?session_id=0DB4052BEBDC48048A7EEAE06B445FE0 (127.0.0.1) 20.41ms referer=None
So How can get back to a sane ipython 2 notebook environment (even if R, julia, python3 do not work) ? Thank you.