- [TODO] add script for local build for now see
Dockerfile - Manually copy the
kernel.jsonto a subdirectory of the kernels directory in a Jupyter data location (one ofjupyter --paths).
Jupyter will use the kernel.json file to start the kernel (passing the connection file as the first parameter).
The docker folders contains a Dockerfile for building a tcljupyter container based on alpine. An example docker-compose.yml files is provided.
Prebuilt images for amd64 and arm64 are on Docker Hub.
The Tcl used to run the init.tcl script should have the following available:
- Tcl 8.6 or higer with threads and sqlite
- tclzmq (Not for the tclonly version)
- tcllib uuid
- tcllib sha256
Easiest way to build tclzmq on Windows is to use mingw.
- Install tcllib
- Install critcl
- Install the msys zmq packages
pacman -Syu mingw64/mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-zeromq
- Run the
build.tclinstaller from the tclzmq distro. NB: Static builds don't work in the sense that they are the same as shared builds.
Most web client commands are supported. Only thing missing is reading from stdin with for example gets.
jupyter::display mimetype body: Display body in the cell. Returns the display id for use inupdatedisplay.jupyter::html body: Display body as html in the cell. Returns the display id for use inupdatedisplay.jupyter::updatedisplay id mimetype body: Updates the display with ididwith then new body.jupyter::updatehtml id body: Updates the html display with ididwith the new body.
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 appending;to the last command of the cell.
A prequisite is the jupyter_kernel_test (JKT) module:
pip install jupyter_kernel_test
To run the test suite, execute (from within the checkout directory):
python -m tests.test_tcljupyter
For communication from kernel to session thread [thread::send -async] is being used. stdout and stderr are being intercepted by chan push