This is an experimental, partial, compact rebuild of some ideas of https://jupyter.org/%|%Jupyter Notebook%|% which first was presented at EuroTcl 2019. The name is derived from Taygete (Ταϋγέτη) which is a small retrograde irregular satellite of Jupiter, aka Jupiter XX. It consists of a webview (the rendering component/library of a web browser) with an added Tcl interface, plus some Tcl and JavaScript to provide a user interface resembling Jupyter Notebook. The webview part is basically taken from the https://github.com/zserge/webview%|%Tiny cross-platform webview library for C/C++/Golang%|% with the Python interface taken as starting point for the Tcl interface. No browser and webserver are required so it can be made into one binary with zero installation and without requiring network infrastructure. The Tcl binding is about 650 LOC and can be found in the https://www.androwish.org/home/dir?name=undroid/twv%|%undroid/twv%|% folder on AndroWish's website. The UI/engine is a single Tcl script of about 1300 LOC and can be found with some examples in the https://www.androwish.org/home/dir?name=undroid/tsb%|%undroid/tsb%|% folder on AndroWish's website. A ready made ZIP kit for immediate experimation is available in http://www.ch-werner.de/AndroWish/TSB.kit%|%TSB.kit%|%. It supports the three major desktop platforms Windows (32 and 64 bit), MacOS (Intel, 64 bit), Linux (Intel, 32 and 64 bit, distro agnostic but a decent version with gnome 3 runtime is required). If started without further arguments, it presents an overview page with links to examples. ---- '''[Jorge] - 2019-07-02 00:38:33''' This is what I got when trying on ubuntu: jorge@jorge-Inspiron-1545:~/Downloads$ ./undroidwish-e5dc71ed9d-linux32 TSB.kit CRITICAL: Error in startup script: can't find package twv while executing "package require twv" (file "TSB.kit/tsb/tsb.tcl" line 9) invoked from within "source [file join [file dirname [info script]] tsb tsb.tcl]" (file "TSB.kit/main.tcl" line 2) invoked from within "source [file join [info script] main.tcl]" invoked from within "if {[file exists [file join [info script] main.tcl]]} { source [file join [info script] main.tcl] }" (file "TSB.kit" line 5) ---- '''[chw] - 2019-07-02 02:14:45''' The twv extension requires a libwebkit2gtk-4.0.so.37 shared library which might be in the libwebkit2gtk-4.0-37 package if your Ubuntu isn't that old. Additionally, it wants libjavascriptcoregtk-4.0.so.18 which should be in the libjavascriptcoregtk-4.0-18 package. In general I suggest to not use it in combination with undroidwish but with vanillawish since the tsb.tcl script tries to withdraw the tk toplevel anyway since it is not needed due to the webview having its own toplevel window.