Problema con el cuaderno Ipython y Pyzmq (más Jupyter)

Problema con el cuaderno Ipython y Pyzmq (más Jupyter)

Tuve problemas para instalar Ipython, pero afortunadamente probé la versión 3.2.1 y todo salió bien y puedo ejecutar Ipython, pero todavía no puedo ejecutar Ipython notebook.

$ ipython

Python 2.7.9 (default, Apr  2 2015, 15:33:21) 
Type "copyright", "credits" or "license" for more information.

IPython 3.2.1 -- An enhanced Interactive Python.


$ ipython notebook
...
ImportError: IPython.html requires pyzmq >= 13

Intenté instalar pyzmq y recibí el siguiente error:

$ sudo pip install -U pyzmq
...
Warning: Failed to build or run libzmq detection test.



If you expected pyzmq to link against an installed libzmq, please check to make sure:



    * You have a C compiler installed

    * A development version of Python is installed (including headers)

    * A development version of ZMQ >= 2.1.4 is installed (including headers)

    * If ZMQ is not in a default location, supply the argument --zmq=<path>

    * If you did recently install ZMQ to a default location,

      try rebuilding the ld cache with `sudo ldconfig`



      or specify zmq's location with `--zmq=/usr/local`
       ...
          compilation terminated.

error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

Copié solo el error porque hay cientos de líneas ejecutadas por el shell.

Información: Python Versión 2.7.9
Tengo Anaconda, (no sé si cambia algo) Ubuntu 15.04 Tengo Canopy (Python IDE) instalado (no sé si cambia algo)

EDITAR: Estaba probando otras cosas y luego decidí intentar instalar jupyter. Noté que incluso después de una instalación limpia (con pip) no podía ejecutar jupyter.

$ jupyter notebook
jupyter : command not found.

pero ahora puedo ejecutar:

~$ ipython notebook
[I 00:33:30.336 NotebookApp] Writing notebook server cookie secret to /run/user/1000/jupyter/notebook_cookie_secret
[I 00:33:30.386 NotebookApp] Serving notebooks from local directory: /home/renanpc
[I 00:33:30.386 NotebookApp] 0 active kernels 
[I 00:33:30.386 NotebookApp] The IPython Notebook is running at: http://localhost:8888/
[I 00:33:30.386 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

(process:11118): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed
^C[I 00:37:24.548 NotebookApp] interrupted
Serving notebooks from local directory: /home/renanpc
0 active kernels 
The IPython Notebook is running at: http://localhost:8888/

y el Notebook funciona bien. Estoy muy muy confundido con esta situación.

Respuesta1

He tenido el mismo problema todavía. Deberías probar lo siguiente: what ipython - en mi caso obtuve - "/opt/local/bin/ipython" Luego ls -l /opt/local/bin/ipython esto se mostrará a dónde lleva el enlace "lrwxr-xr-x 1 administrador raíz 71B 11 de febrero 17:49 /opt/local/bin/ipython@ -> /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/ ipython" Ahora ls /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/ - si ve jupyter en la salida, simplemente haga lo siguiente: ln -s /opt/local/Library/Frameworks/Python. marco/Versiones/2.7/bin/jupyter /opt/local/bin/

información relacionada