在ubuntu上安装rubymine
我是 ubuntu 的新手,正如他们在现场所说的那样安装了 rubymine,安装后我没有找到任何应用程序快捷方式或新文件,所以现在我正在使用我编写的用于安装它的相同脚本运行,并且我真的不喜欢它,这些文件在我的下载文件夹中。
该怎么办?
I'm new to ubuntu, and installed rubymine as they say on site, after installation I didn't find any app shortcut or new files, so for now I'm running the using the same script I wrote to install it, and I really don't like it, the files are in my downloads folder.
What to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
达到此目的的最简单方法是启动 File |创建启动器命令。它将注册用于启动 RubyMine 的我的命令。但是您可以手动执行此操作:
解压 RubyMine 后,您可以使用以下命令轻松创建符号链接:
sudo ln -s $path_to_installation/bin/rubymine.sh /usr/local/bin/mine.sh
执行此命令后,您将能够使用
mine
命令启动 RubyMine。The easiest way to reach this is to launch File | Create Launcher command. It will register mine command for launching RubyMine. However you can do this manually:
Once you've unpacked RubyMine you can easily create symbolic link using the following command:
sudo ln -s $path_to_installation/bin/rubymine.sh /usr/local/bin/mine.
After executing this command it you'll be able to launch RubyMine using
mine
command.在较新版本的 RubyMine 中可能有所更改,但在 Ubuntu 12.10 上的 RubyMine 5.4 上,我在“工具 | 创建命令行启动器”(工具,而不是文件下)下找到了它。不过,如果没有奥列格的建议,根本找不到它,谢谢!
May have changed in newer versions of RubyMine, but on RubyMine 5.4 on Ubuntu 12.10, I found it under "Tools | Create Command Line Launcher" (Tools, instead of under File). Wouldn't have found it at all if not for Oleg's suggestion, though, thanks!
对于 https://unix.stackexchange.com/ 来说这是一个更好的问题,但通常您只想安装到 /usr/local/ bin,这样它将成为一个可以从计算机上的任何地方运行的程序。
This is a better question for https://unix.stackexchange.com/ but usually you simply want to install to /usr/local/bin so it will become a program that can be run from anywhere on the computer.