notebook - ¿Cómo cargar un portátil ipython existente?
notebook jupyter markdown (3)
Debe iniciar ipython notebook
, de lo contrario, ipython
intentará ejecutar dream.ipynb
como si fuera un archivo que contenga código Python:
ipython notebook dream.ipynb
Me estoy perdiendo algo realmente obvio aquí, pero quiero cargar un archivo .ipynb existente en mi propia sesión de ipython. He intentado lo siguiente:
$ ipython dream.ipynb
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
/home/me/develop/deepdream/dream.ipynb in <module>()
33 {
34 "cell_type": "code",
---> 35 "collapsed": false,
36 "input": [
37 "# imports and basic notebook setup/n",
NameError: name ''false'' is not defined
(El cuaderno de Google DeepDream) ¿Pero la sintaxis de JSON no es buena? Estoy usando el ipython de Anaconda 2.3.0, python 3.4.0 y ipython qtconsole 3.2.0.
Debe intentar iniciar un servidor ipython notebook a través de ipython notebook
, es decir, específicamente este comando y no el nombre del notebook, y simplemente cargar el notebook específico desde su navegador web.
Es mejor usar el jupyter notebook dream.ipynb
.
El comando ipython notebook
quedará en desuso en el futuro.