gopherdata / gophernotes

The Go kernel for Jupyter notebooks and nteract.
MIT License
3.82k stars 265 forks source link

cmd command gophernotes:Command not found #160

Closed dapper-hacker closed 5 years ago

dapper-hacker commented 5 years ago

Hi, I am trying to setup Gophernotes with the jupyter notebook (installed via Anaconda install) OS - Mac OS Mojave Go - Go 1.12 (brew install) Prereqs - brew install (pkg-config and zmq) $GOPATH - /usr/local/Cellar/go/1.12/bin

I have installed go and then have been trying to install gophernotes. But after successful install of gophernotes when I try to run $gophernotes Error: command not found

I think my installation has not compiled and created the gophernotes binary.

image image
dapper-hacker commented 5 years ago

I had to run go build from the src folder to build the binary. Its unexpected or intended?

sbinet commented 5 years ago

as per the instructions for Mac:

that's expected. (go get retrieves the sources, its dependencies, compiles everything and installs the binary under $GOPATH/bin. go build just builds and puts the resulting binary in the current directory by default.)