On running the command
go get github.com/mkilling/goejdb
# github.com/mkilling/goejdb
../../go/src/github.com/mkilling/goejdb/ejcoll.go:4:24: fatal error: ejdb/ejdb.h: No such file or directory
// #include <ejdb/ejdb.h>
Is the error with the package or I need any other dependency to be installed for this command. I am able to install Other packages with go get command
You must install egbd. The 'go get' command only installs prerequisites that are Go packages.
The instructions for using apt-get are:
sudo add-apt-repository ppa:adamansky/ejdb
sudo apt-get update
sudo apt-get install ejdb ejdb-dbg
I found this in https://github.com/mkilling/goejdb, you sure got ejdb
installed?