如何为 Eclipse 配置 Ruby 解释器
我刚刚安装了 Eclipse 的 Ruby 插件。在创建我的第一个 Ruby 项目期间,我在选择 Ruby 解释器时遇到了问题。
我做了新项目 =>红宝石项目。但是,当它要求解释器时,默认值是未定义的,特定于项目的解释器下拉菜单上没有显示任何内容,当我单击“配置解释器”链接时,它在我的网络浏览器上打开了一个错误的 URL 页面。
正确使用的解释器是什么以及如何配置 ruby 解释器?感谢您的帮助!
I just installed the Ruby plugin for Eclipse. During creating my first Ruby project I fall into problems selecting the ruby interpreter.
I did New Project => Ruby project. But when it asked for an interpreter, the default was undefined, nothing showed up on the project-specific interpreter drop-down menu and when I clicked on 'Configure Interpreters' link it opened up a bad url page on my web browser.
What is the correct interpreter to use and how to configure ruby interpreter? Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我在 Ubuntu 12.04 的 eclipse Indigo 中启动了我的 ruby 项目,并且遇到了同样的问题。如果您已经安装了 ruby 并且可以在 eclipse 中创建 ruby 项目,那么您可以通过以下方式查找/添加解释器:
对于我的情况,解释器的位置是/ usr/bin/ruby
I started my ruby project in eclipse Indigo in Ubuntu 12.04 and have the same problem. If you installed ruby already and can create a ruby project in eclipse, then you can find/add interpreters by the following way:
For my case, the location of the interpreter is /usr/bin/ruby
没有 RVM :
请在控制台中输入命令
whereis ruby
。您将获得类似
/usr/bin/ruby
或/usr/local/bin/ruby
的路径来检查哪个是正确的解释器路径/usr/bin/ ruby -v 如果您获得版本。那是你的口译员。
使用 RVM:
请输入命令:
rvm info
复制此路径并粘贴到您需要输入解释器路径的任何位置。
这对我有用。我希望它也能帮助其他人。
干杯!
Without RVM :
Please type command
whereis ruby
in console.you will get the path like
/usr/bin/ruby
or/usr/local/bin/ruby
to check which is correct interpreter path/usr/bin/ruby -v
if you get version. that is your interpreter.With RVM :
Please type command:
rvm info
copy this path and paste wherever you need enter you interpreter path.
It worked for me. and I hope it will help others as well.
Cheers!
先决条件:
在 Eclipse 中安装 Ruby Ruby 解释器的配置:
现在您已准备好创建新的 Ruby 项目并运行。
Prerequisite: Installation of Ruby
Configuration of Ruby Interpreter in Eclipse:
Now you are ready to create new Ruby project and run.
转到
窗口->首选项
。然后,您应该在左侧导航窗格中看到一个Ruby
选项。选择Ruby->安装的解释器
。然后,您应该能够通过添加 ruby 安装路径来将 eclipse 指向正确的解释器。希望这有帮助。
Go to
Window->Preferences
. You should then have aRuby
option in the left navigation pane. SelectRuby->Installed Interpreters
. You should then be able to point eclipse at the correct interpreter by adding a path to the ruby install.Hope this helps.
在我的系统上:
根据您的操作系统/等,它会有所不同。就我而言,我安装了 RVM(Ruby 版本管理器)。重点是将 IDE 指向 Ruby 所在的路径。
由于这是一个老问题,我会推断 Anisha 要么修复了它,要么放弃了,所以这些信息仅供其他人参考。
On my system:
It will be different depending on you OS/etc. In my case, I installed with RVM, the Ruby Version Manager. The point is to point the IDE to the path for wherever Ruby is.
Since this is an old question, I'll infer that Anisha either fixed it or gave up, so the info is just for others to reference.
首先打开Ruby透视图,进入Window >开放视角>其他并选择Ruby。
要配置 Ruby 解释器,请转到 Window >首选项>红宝石>口译员。
单击“添加”按钮 >“浏览”按钮,找到并选择 Ruby 可执行文件 ruby.exe,然后单击“打开”按钮。
在我的例子中,Ruby 位于 C:\Ruby192\bin\ruby.exe 下。
First open Ruby perspective, go Window > Open Perspective > Other and select Ruby.
To configure Ruby interpreter, go Window > Preferences > Ruby > Interpreters.
Click Add button >Browse button, locate and select your Ruby executable ruby.exe, and click Open button.
In my case Ruby is located under under C:\Ruby192\bin\ruby.exe.
如果您的系统上安装了 Ruby,Eclipse 可以帮助您找到 Ruby 解释器的目录。在 Eclipse 中,选择新项目,然后选择 ruby 项目,然后在解释器部分选择配置解释器,在窗口右侧,点击搜索按钮,Eclipse 将在您的系统上找到 ruby 解释器的版本。然后单击“确定”。
If you have Ruby installed on your system, Eclipse can help you to find the directory of ruby interpreter. In Eclipse, choose new project, then ruby project then in the interpreter section choose configure interpreters, in the right hand side of the window, hit search button, Eclipse will find the version of ruby interpreter on your system. then click ok.