Differences between revisions 2 and 3
Revision 2 as of 2017-07-11 09:38:51
Size: 864
Editor: vdelecroix
Comment:
Revision 3 as of 2017-07-11 09:38:57
Size: 866
Editor: vdelecroix
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
- [[https://trac.sagemath.org/ticket/23361|#23361]]  - [[https://trac.sagemath.org/ticket/23361|#23361]]
Line 13: Line 13:
- [[https://trac.sagemath.org/ticket/23362|#23362]]  - [[https://trac.sagemath.org/ticket/23362|#23362]]

Transition issues with Jupyter

Sage 8.0 is making the transition from the sage notebook (sagenb) to Jupyter. There are still some compatibility issues.

interact

what ?

rst2ipynb

rst format

In the Sage notebook it was possible to load a rst file. With Jupyter one first has to use the script rst2ipynb and then load the notebook.

output blocks

The Sage notebook used to cut the output when it was too long. In Jupyter this is not working nicely. A loop like

while True:
    print('hello')

is likely to freeze the browser. Moreover, after killing the kernel it is impossible to load the worksheet because the output block became too long. All this used to work fine in the Sage notebook.

SagenbToJupyter (last edited 2017-07-11 12:12:02 by vdelecroix)