为什么我在尝试设置 Google 安全浏览数据库时收到 'sbserver not found' 错误?

Why am I receiving an 'sbserver not found' error when attempting to set up Google Safe Browsing Database?

我达到了这个 GitHub 回购。关于 google 安全浏览数据库。

我从来没有用过go,但我认为现在需要它。所以我安装它使用:

sudo apt install golang-go

然后,我按照 GitHub 页面中的说明进行操作。我执行了:

go get github.com/google/safebrowsing

但是在我执行命令的路径中没有安装任何东西。但是,我继续:

export PATH=$PATH:$GOPATH/bin

然后手册说,运行下面的命令(是两行,我执行了第一行,然后我回车,然后没有任何变化。然后分别执行第二行:

go get github.com/google/safebrowsing/cmd/sbserver
sbserver -apikey $APIKEY

执行第二行后,报错:

Command 'sbserver' not found, did you mean:

  command 'sxserver' from deb sx
  command 'sb_server' from deb spambayes
  command 'ssserver' from deb shadowsocks

Try: sudo apt install <deb name>

你能指出我哪里出了问题吗?如何安装google安全浏览数据库?

你的路径是错误的。您会在 $GOPATH/bin.

中找到 sbserver

尝试${GOPATH}/bin/sbserver -apikey $APIKEY

如果这不起作用,请按照 Go 安装说明进行操作,并确保您的 Go 环境变量正确。

GOPATH 应该看起来像 /home/myname/go 或其他看起来正常的东西。

你的 PATH 应该包含 ${GOPATH}/bin