notebook nbviewer python ipython

python - notebook - nbviewer



¿Iniciar el servidor de notebook IPython sin ejecutar el navegador web? (2)

¿Es esto lo que quieres?

$ ipython notebook --no-browser

Editar

Ahora debes usar en su lugar

$ jupyter notebook --no-browser

Ya que

ipython notebook está en desuso y se eliminará en futuras versiones. Es probable que desee utilizar el jupyter notebook en el futuro.

Me gustaría usar Emacs como editor principal para las notebooks iPython / Jupyter Notebook (con el paquete ein ). Quiero preguntarle si hay una manera de ejecutar el servidor sin la necesidad de abrir un navegador web.


Si no desea escribir ipython notebook --no-browser todo el tiempo,

para ipython 4.0 con jupyter:

  1. generar config

    jupyter notebook --generate-config

    Crearía un archivo en algún lugar como

    win: C:/Users/[YouUserName]/.jupyter/jupyter_notebook_config.py

    linux: ~/.jupyter/jupyter_notebook_config.py

  2. add c.NotebookApp.open_browser = False a este archivo.

¡Todo listo!