英文:
No Such file or directory on go get github.com/mkilling/goejdb
问题
在运行以下命令时:
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>
这个错误是由于包的问题还是我需要安装其他依赖项来执行此命令。我能够使用go get命令安装其他包。
英文:
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
答案1
得分: 1
你必须安装egbd。'go get'命令只会安装Go包的先决条件。
使用apt-get的说明如下(https://github.com/Softmotions/ejdb#ejdb-binary-package-installation):
sudo add-apt-repository ppa:adamansky/ejdb
sudo apt-get update
sudo apt-get install ejdb ejdb-dbg
英文:
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
答案2
得分: 1
我在https://github.com/mkilling/goejdb中找到了这个,你确定已经安装了ejdb
吗?
https://github.com/Softmotions/ejdb
英文:
I found this in https://github.com/mkilling/goejdb, you sure got ejdb
installed?
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论