英文:
Building Go Lang database 'tiedot'
问题
GO包github HouzuoGuo/tiedot无法成功构建。有人成功构建过这个包吗?
它报错说需要包github GeertJohan/go.rice,但是该包在Github上是可用的。
然而,我不知道如何构建这个包。
英文:
The GO Package github HouzuoGuo/tiedot does not successfully build. Has any one successfully
built this package?
It complains the the package github GeertJohan/go.rice is needed and not available.
However it is on Github. I am at a loss how to build this package.
答案1
得分: 2
你需要使用go get
来下载/安装包:
┌─ oneofone@Oa [/tmp]
└──➜ go get -v -u github.com/HouzuoGuo/tiedot
github.com/HouzuoGuo/tiedot (下载)
bitbucket.org/kardianos/osext (下载)
github.com/GeertJohan/go.rice (下载)
github.com/daaku/go.zipexe (下载)
英文:
You need to use go get
to download / install packages:
┌─ oneofone@Oa [/tmp]
└──➜ go get -v -u github.com/HouzuoGuo/tiedot
github.com/HouzuoGuo/tiedot (download)
bitbucket.org/kardianos/osext (download)
github.com/GeertJohan/go.rice (download)
github.com/daaku/go.zipexe (download)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论