You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run the build.tcl installer from the tclzmq distro. NB: Static builds don't work in the sense that they are the same as shared builds.
Supported
Most web client commands are supported. Only thing missing is reading from stdin with for example gets.
Commands
jupyter::display mimetype body: Display body in the cell. Returns the display id for use in updatedisplay.
jupyter::html body: Display body as html in the cell. Returns the display id for use in updatedisplay.
jupyter::updatedisplay id mimetype body: Updates the display with id id with then new body.
jupyter::updatehtml id body: Updates the html display with id id with the new body.
Magic commands
Magics are lines starting with ## at the top of the cell.
##timeit ?count?: Time the execution of the cell and display the results. Changing count will execute the cell multiple times and show the average time.
##noresult: Do not show the last result. This is convenient if the last result is very large. The same effect can be achieved by postfixing a ; as the last character in the cell.