我正在尝试在ubuntu上下载ipfs,以便可以将其与golang一起使用。

我正在使用以下命令:

go get -d github.com/ipfs/go-ipfs

但这给了我以下错误信息:
package github.com/ipfs/go-ipfs
    imports runtime: cannot find package "runtime" in any of:
    /home/userone/go/src/runtime (from $GOROOT)
    /home/userone/gostuff/src/runtime (from $GOPATH)

我在文件~/.bashrc的末尾添加了以下几行
export GOPATH=$HOME/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin

我正在使用Ubuntu 16.04,并使用以下命令安装了golang
sudo aptitude install golang-go git

为什么会收到该错误消息?

最佳答案

可以在README.md https://github.com/ipfs/go-ipfs#install中找到安装说明。

要从源代码进行编译,请执行以下操作:

  $ go get -u -d github.com/ipfs/go-ipfs

  $ cd $GOPATH/src/github.com/ipfs/go-ipfs
  $ make install

关于go - 无法安装ipfs,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42820880/

10-10 16:53