Domande taggate «jupyter-notebook»

Jupyter Notebook è un'applicazione Web che fornisce un frontend per molte lingue e shell interattive come IPython. Jupyter Notebook, a differenza del suo precedente notebook IPython, supporta molte lingue e shell interattive oltre a Python e IPython.





4
Come incorporare HTML nell'output di IPython?
È possibile incorporare l'output HTML renderizzato nell'output IPython? Un modo è usare from IPython.core.display import HTML HTML('<a href="http://example.com">link</a>') o (alias di cella multilinea IPython) %%html <a href="http://example.com">link</a> Che restituiscono un collegamento formattato, ma Questo collegamento non apre un browser con la stessa pagina Web dalla console . Tuttavia, i notebook …







7
Importa la funzione locale da un modulo ospitato in un'altra directory con relative importazioni in Jupyter Notebook utilizzando Python 3
Ho una struttura di directory simile alla seguente meta_project project1 __init__.py lib module.py __init__.py notebook_folder notebook.jpynb Quando lavoro notebook.jpynbse provo a utilizzare un'importazione relativa per accedere a una funzione function()in module.pycon: from ..project1.lib.module import function Ottengo il seguente errore: SystemError Traceback (most recent call last) <ipython-input-7-6393744d93ab> in <module>() ----> 1 …




Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.