找不到导入 go-gtk
我一直在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
它将下载并安装这个库到 $GOPATH/src 中
Use:
and it will download and install this library in $GOPATH/src
使用以下命令安装必要的软件包
Use following command to install necessary packages