英文:
Can GoClipse v0.91 open definition?
问题
我已经安装了golang1.4和GoClipse v0.91,但是我想打开fmt.Printf()
的定义,但是显示"Cannot run program oracle"。我在谷歌上搜索了一下,了解到oracle是GoClipse的一个插件,但是我找不到gooracle.exe或者其他类似的东西。我尝试下载gooracle
,但是没有找到。有人可以帮忙吗?
英文:
I have installed golang1.4 and GoClipse v0.91, but I want to open fmt.Printf()
definition,it displays "Cannot run program oracle". I google this and know that oracle is a plugin for GoClipse, but I cannot find the gooracle.exe or something other like this.And I try to download gooracle
, but find nothing. Anyone can help?
答案1
得分: 3
执行go get golang.org/x/tools/oracle
命令,oracle
将被安装在$GOPATH/bin/
目录下,然后你需要在Eclipse Preference -> Go -> Tool -> Go oracle path
中配置它的路径。
英文:
do go get golang.org/x/tools/oracle
, oracle
will be placed in $GOPATH/bin/
, then you need to config its path in Eclipse Preference -> Go -> Tool -> Go oracle path
答案2
得分: 2
在Eclipse中打开窗口 -> 首选项 -> 转到 -> 工具,然后点击按钮下载Go oracle
。
英文:
In Eclipse open Window -> Preferences -> Go -> Tools and
Click the button Download Go oracle
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论