找不到导入 go-gtk

发布于 2024-12-03 15:09:48 字数 299 浏览 0 评论 0原文

我一直在使用 Google Go,我喜欢它背后的力量,并决定尝试一些库。我尝试使用 goinstall 来安装 github.com/mattn/go-gtk/gtk 但当我尝试编译一个示例时,我得到:

can't find import: github.com/mattn/go-gtk/gtk

我听说其他人在使用 goinstall 时遇到问题,我能做些什么来解决这个问题?我还看到有些人通过将路径设置为 github.com/mattn/go-gtk/gtk/gtk.so 来解决此问题,但它仍然对我不起作用。

I've been playing around with Google Go, I love the power behind it and decided to try out some libraries. I tried using goinstall to install github.com/mattn/go-gtk/gtk but when I try to compile an example I'm getting:

can't find import: github.com/mattn/go-gtk/gtk

I've heard that others have problems with goinstall, is there anything I can do to fix this? I also saw that some people fixed this by putting the path as something like github.com/mattn/go-gtk/gtk/gtk.so but it's still not working for me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乞讨 2024-12-10 15:09:48

使用:

go install github.com/mattn/go-gtk/gtk

它将下载并安装这个库到 $GOPATH/src 中

Use:

go install github.com/mattn/go-gtk/gtk

and it will download and install this library in $GOPATH/src

寄居者 2024-12-10 15:09:48

使用以下命令安装必要的软件包

go get github.com/mattn/go-gtk 

Use following command to install necessary packages

go get github.com/mattn/go-gtk 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文