gophernotes
gophernotes copied to clipboard
The Go kernel for Jupyter notebooks and nteract.
error writing file "C:\\Users\\smile\\go\\src\\github.com\\gopherdata\\gophernotes\\imports/thirdparty/gonum_org_v1_gonum_mat.go": open C:\Users\smile\go\src\github.com\gopherdata\gophernotes\imports/thirdparty/gonum_org_v1_gonum_mat.go: The system cannot find the path specified. it is visiable to find the error is come from path, but i do not konw how...
Hello, I am I having issues with importing third party packages to GopherNotes. I also feel that it is important to note that I am running GopherNotes through a notebook...
I ran container by `docker run -it -p 8888:8888 -v %CD%:/usr/share/notebooks gopherdata/gophernotes:latest-ds`. The code below is that I tried to **converting a column into a different type**, it got an...
Now that Go generics have been approved, we should support them in gophernotes too More specifically, the underlying interpreter gomacro has an open issue https://github.com/cosmos72/gomacro/issues/24 to track their implementation. Help...
@cdevr asked in https://github.com/cosmos72/gomacro/issues/13 > Do you think it'd be possible to go even further and run something like gophernotes from within an app? (to get a notebook interface available...
 ```go import elasticsearch7 "github.com/elastic/go-elasticsearch/v7" ``` ## But in the latest version of gomacro is successful. ```bash gomacro> import elasticsearch7 "github.com/elastic/go-elasticsearch/v7" // debug: looking for package "github.com/elastic/go-elasticsearch/v7" ... // debug:...
CODE:- import ( "database/sql" "fmt" _"github.com/ibmdb/go_ibm_db" ) func main() { con := "HOSTNAME=localhost;PORT=50000;DATABASE=go;UID=*****;PWD=******;" db, err := sql.Open("go_ibm_db", con) fmt.Println(err) } main() ERROR:- This is Open()------722 sql: unknown driver "go_ibm_db" (forgotten...
When start in qtconsole like ``` jupyter-qtconsole --kernel=gophernotes ``` Enter pressed, the terminal show following messages: ``` 2020/12/22 19:19:46 Unhandled shell message: history_request 2020/12/22 19:19:50 Unhandled shell message: is_complete_request ```...
go env env: GOPATH=/root/go GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/root/.cache/go-build" GOENV="/root/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/root/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/lib/go-1.14" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/lib/go-1.14/pkg/tool/linux_amd64" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD=""...
@snowzach reported the following in https://github.com/cosmos72/gomacro/issues/109 I am not expert with docker, so I moved the issue here as it's about gophernotes + docker (I tested on a plain Linux...