On Fri, Mar 10, 2017 at 5:43 AM, mail4rinaldo via Project Jupyter < [email protected]> wrote:
> Will the display module (http://ipython.readthedocs.io/en/stable/api/ > generated/IPython.display.htm) be supported in future releases? > > I was surprised it's not a part of the jupyter notebook but instead an > IPython module. Is it possible to use the display module in jupyter > notebook with kernels other than IPython? > metakernel makes available the display functionality, but it is up to the individual kernel implementations to take advantage of it. We also have display library code that can be used from IPython or metakernel-based kernels: https://github.com/Calysto/metakernel/blob/master/metakernel/display.py#L10 Thus, metakernel-based kernels that can use Python libraries directly (like Calysto Scheme) don't need to do anything, but have the user import and us these libraries. The ipyparallel code is similar: it is written for IPython, but it is fairly easy to take advantage of, and metakernel-based kernels can also be run be in parallel via metakernel "magics". -Doug -- > You received this message because you are subscribed to the Google Groups > "Project Jupyter" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/jupyter/dc38d6af-3f70-4669-b6ab-a01bc180f8d9%40googlegroups.com > <https://groups.google.com/d/msgid/jupyter/dc38d6af-3f70-4669-b6ab-a01bc180f8d9%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAAusYCip0KRE2nkcbzXujkk9aRotj2eqc0aJR2wXBDJoSnwLbw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
