在执行”go get github.com/mkilling/goejdb”时出现了”没有这样的文件或目录”的错误。

huangapple go评论77阅读模式
英文:

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吗?

在执行”go get github.com/mkilling/goejdb”时出现了”没有这样的文件或目录”的错误。

https://github.com/Softmotions/ejdb
在执行”go get github.com/mkilling/goejdb”时出现了”没有这样的文件或目录”的错误。

英文:

I found this in https://github.com/mkilling/goejdb, you sure got ejdb installed?

在执行”go get github.com/mkilling/goejdb”时出现了”没有这样的文件或目录”的错误。

https://github.com/Softmotions/ejdb
在执行”go get github.com/mkilling/goejdb”时出现了”没有这样的文件或目录”的错误。

huangapple
  • 本文由 发表于 2016年4月4日 11:20:11
  • 转载请务必保留本文链接:https://go.coder-hub.com/36394070.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定