安装 dbweb 时没有远程存储库

no remote repository when installing dbweb

我想安装 dbweb 来管理 MySQL 数据库服务器,但我在 cmd 中收到此错误。 我试图在我的 go 项目中安装它并得到同样的错误。

C:\Users\NakhodaSokoot>go get github.com/go-xorm/dbweb
# cd C:\Users\NakhodaSokoot\go\src\github.com\lunny\nodb; git pull --ff-only
fatal: No remote repository specified.  Please, specify either a URL or a
remote name from which new revisions should be fetched.
package github.com/lunny/nodb/config: exit status 1
# cd C:\Users\NakhodaSokoot\go\src\golang.org\x\crypto; git pull --ff-only
fatal: No remote repository specified.  Please, specify either a URL or a
remote name from which new revisions should be fetched.
package golang.org/x/crypto/scrypt: exit status 1

它给出这些错误是因为 github.com/go-xorm/dbweb 依赖于其他两个无法更新的包,因为它们在本地但它们没有远程所以 go get 不知道从哪里拉代码。

尝试删除它们:

$ rm -rf $GOPATH\src\github.com\lunny\nodb
$ rm -rf $GOPATH\src\golang.org\x\crypto

然后再尝试去取包裹:

$ go get -u github.com/go-xorm/dbweb

或者分别获取它们然后获取 dbweb:

$ go get -u golang.org\x\crypto
$ go get -u github.com\lunny\nodb
$ go get -u github.com/go-xorm/dbweb