Go (golang) Jupyter Notebook kernel and an interactive REPL
Since go1.10, this Go kernel has performance issue due to a performance regression in Go tool chain.
Also, this Go kernel can not be built with go1.12 due to another regression in Go tool chain.
Now, the compiler options this kernel relies on are completely broken and I'm not sure when they will fix the regressions. Unfortunately, they don't plan to fix this in go1.13 as of July 8th 2019. If you are interested in using this kernel, please upvote the bugs. For a while, please use other Go kernels if you want to use the later version of Go with Jupyter notebook.
You can view example notebooks of lgo from Example notebooks on Jupyter nbviewer
If you want to execute these notebooks, you can try these notebooks on your browser without installation from
Thanks to binder (mybinder.org), you can try lgo on your browsers with temporary docker containers on binder. Open your temporary Jupyter Notebook from the button above and enjoy lgo.
> git clone https://github.com/yunabe/lgo.git
> cd lgo/docker/jupyter
> docker-compose up -d
If you want to use a port other than 8888 on host, update ports config in lgo/docker/jupyter/docker-compose.yaml before running docker-compose up.
> docker-compose exec jupyter jupyter notebook list
Currently running servers:
http://0.0.0.0:8888/?token=50dfee7e328bf86e70c234a2f06021e1df63a19641c86676 :: /examples
If you are using Linux or Mac OS, you can use start/stop scripts instead. Web browser will open the URL automatically.
# start server
> ./up.sh
# stop server
> ./down.sh
sudo apt-get install libzmq3-devsudo apt-get install pkg-configgo get github.com/yunabe/lgo/cmd/lgo && go get -d github.com/yunabe/lgo/cmd/lgo-internallgo command into your $(go env GOPATH)/binLGOPATH environment variablelgo install will install binaries into the directory specified with LGOPATH.LGOPATH.lgo installLGOPATH with specific compiler flags.lgo install fails, please check install log stored in $LGOPATH/install.loglgo installpkg [packages] to install third-party packages to LGOPATHLGOPATH.lgo installpkg fails, please check the log stored in $LGOPATH/installpkg.log.[packages] args.python $(go env GOPATH)/src/github.com/yunabe/lgo/bin/install_kernelpython as you used to install jupyter. For example, use python3 instead of python if you install jupyter with pip3.lgo with JupyterLab, install a jupyterlab extension for lgojupyter labextension install @yunabe/lgo_extensionjupyter notebook command to start Juyputer Notebook and select "Go (lgo)" from New Notebook menu.Shift-Tab.Tab to complete codeFormat Go button in the toolbar to format code.jupyter lab.

You can use lgo from command line with Jupyter Console or build-in REPL mode of lgo
Run jupyter console --kernel lgo
In [1]: a, b := 3, 4
In [2]: func sum(x, y int) int {
: return x + y
: }
In [3]: import "fmt"
In [4]: fmt.Sprintf("sum(%d, %d) = %d", a, b, sum(a, b))
sum(3, 4) = 7
Run lgo run
$ lgo run
>>> a, b := 3, 4
>>> func sum(x, y int) int {
... return x + y
... }
>>> import "fmt"
>>> fmt.Sprintf("sum(%d, %d) = %d", a, b, sum(a, b))
sum(3, 4) = 7
The packages you want to use in lgo must be prebuilt and installed into $LGOPATH by lgo install command.
Please make sure to run lgo install after you fetch a new package with go get command.
Please run lgo install --clean after you update go version.
lgo install installs prebuilt packages into $LGOPATH.
When you update go version, you need to reinstall these prebuilt packages with the newer go
because binary formats of prebuilt packages may change in the newer version of go.
To display HTML and images in lgo, use _ctx.Display.
See the example of _ctx.Display in an example notebook
In lgo, you can interrupt execution by pressing "Stop" button (or pressing I, I) in Jupyter Notebook and pressing Ctrl-C in the interactive shell.
However, as you may know, Go does not allow you to cancel running goroutines with Ctrl-C. Go does not provide any API to cancel specific goroutines. The standard way to handle cancellation in Go today is to use context.Context (Read Go Concurrency Patterns: Context if you are not familiar with context.Context in Go).
lgo creates a special context _ctx on every execution and _ctx is cancelled when the execution is cancelled. Please pass _ctx as a context.Context param of Go libraries you want to cancel. Here is an example notebook of cancellation in lgo.
In lgo, memory is managed by the garbage collector of Go. Memory not referenced from any variables or goroutines is collected and released automatically.
One caveat of memory management in lgo is that memory referenced from global variables are not released automatically when the global variables are shadowed by other global variables with the same names. For example, if you run the following code blocks, the 32MB RAM reserved in [1] is not released after executing [2] and [3] because
[2] does not reset the value of b in [1]. It just defines another global variable b with the same name and shadows the reference to the first b.[3] resets b defined in [2]. The memory reserved in [2] will be released after [3]. But the memory reserved in [1] will not be released.[1]
// Assign 32MB ram to b.
b := make([]byte, 1 << 25)
[2]
// This shadows the first b.
b := make([]byte, 1 << 24)
[3]
// This sets nil to the second b.
b = nil
lgo works with go1.10. But the overhead of code execution is 4-5x larger in go1.10 than go1.9.
It is due to a regression of the cache mechnism of go install in go1.10.
I recommend you to use lgo with go1.9 until the bug is fixed in go1.10.
gore, which was released in Feb 2015, is the most famous REPL implementation for Go as of Dec 2017. gore is a great tool to try out very short code snippets in REPL style.
But gore does not fit to data science or heavy data processing at all.
gore executes your inputs by concatinating all of your inputs,
wrapping it with main function and running it with go run command.
This means every time you input your code, gore executes all your inputs from the begining.
For example, if you are writing something like
gore always runs the first step when you calculate something and you need to wait for 1 min every time. This behavior is not acceptable for real data science works. Also, gore is not good at tyring code with side effects (even fmt.Println) because code snippets with side effects are executed repeatedly and repeatedly. lgo chose a totally different approach to execute Go code interactively and does not have the same shortcoming.
gore is a CLI tool and it does not support Jupyter Notebook.
| lgo | gophernotes | |
|---|---|---|
| Backend | gc (go compiler) | An unofficial interpreter |
| Full Go Language Specs | :heavy_check_mark: | |
| 100% gc compatible | :heavy_check_mark: | |
| Static typing | :heavy_check_mark: | to some extent |
| Performance | Fast | Slow |
| Overhead | 500ms | 1ms |
| Cancellation | :heavy_check_mark: | |
| Code completion | :heavy_check_mark: | |
| Code inspection | :heavy_check_mark: | |
| Code formatting | :heavy_check_mark: | |
| Display HTML and images | :heavy_check_mark: | |
| Windows, Mac | Use Docker or VM | Partial |
| License | BSD | LGPL |
gophernotes was the first Jupyter kernel for Go, released in Jan 2016.
Before Sep 2017, it used the same technology gore uses to evaluate Go code. This means it did not fit to heavy data processing or data analysis at all.
From Sep 2017, gophernotes switched from go run approach to gomacro, one of unofficial golang interpreters by cosmos72. This solved the problem gore has. Now, the code execution mechnism of gophernotes also fits to heavy data analysis.
The shortcomings of using an unofficial interpreter are
- It does not support all Go language features. Especially, it does not support one of the most important Go feature, interface.
As of go1.10, it is hard to support interface in an interpreter written in Go because of the lack of API in reflect package.
- Interpreters are generally slow.
- Unofficial interpreters are not well-tested compared to the official gc (go compiler) tools.
The advantages of this approach are - The overhead of code execution is small because it does not compile and link code. - Windows/Mac partial support. lgo works only on Linux and you need to use VMs or Docker to run it on Windows/Mac. gophernotes (gomacro) works on Windows/Mac natively if you do not need third-party packages.
These disadvantage and advantages are not something inevitable in interperters. But they are not easy to solve under the limited development resource.
Also, lgo kernel supports more rich features in Jupyter Notebook as of Dec 2017, including code completion, code inspection and images/HTML/JavaScript output supports.
Got an error message like:
Kernel Restarting
The kernel appears to have died. It will restart automatically.
First, please confirm your code does not call os.Exit d