cmd command gophernotes:Command not found
dapper-hacker opened this issue · 2 comments
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.
I had to run
go build
from the src folder to build the binary. Its unexpected or intended?
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.)