ruby 如何卸载 RubyMine?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/8297970/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to Uninstall RubyMine?
提问by Dominic Tancredi
How do you uninstall RubyMine (from Mac OSX or other systems)?
你如何卸载 RubyMine(从 Mac OSX 或其他系统)?
It doesn't come with an uninstaller (from what I can tell). There are no options to uninstall in the application itself. There is no documentation (except a "Thank you for trying to uninstall..." on their site.
它没有附带卸载程序(据我所知)。应用程序本身没有卸载选项。没有文档(除了“感谢您尝试卸载...”在他们的网站上。
I can drag the App to the trash, but I assume there are Preferences, etc. to also uninstall. I hate to lose files.
我可以将应用程序拖到垃圾箱,但我假设还有首选项等也可以卸载。我讨厌丢失文件。
回答by yole
You need to delete the following directories:
您需要删除以下目录:
~/Library/Caches/RubyMine*
~/Library/Application Support/RubyMine*
~/Library/Preferences/RubyMine*
~/Library/Preferences/com.jetbrains.rubymine.plist*
~/Library/Logs/RubyMine*
〜/图书馆/缓存/RubyMine*
~/库/应用程序支持/RubyMine*
〜/图书馆/首选项/RubyMine*
~/Library/Preferences/com.jetbrains.rubymine.plist*
〜/图书馆/日志/RubyMine*
回答by AMIC MING
You need to delete following files, more information for other platform click here
您需要删除以下文件,其他平台的更多信息点击这里
Configuration:
~/Library/Preferences/PRODUCTVERSION
〜/图书馆/首选项/ PRODUCTVERSION
Caches:
~/Library/Caches/PRODUCTVERSION
〜/图书馆/缓存/ PRODUCTVERSION
Plugins:
~/Library/Application Support/PRODUCTVERSION
~/库/应用程序支持/PRODUCTVERSION
Logs:
~/Library/Logs/PRODUCTVERSION
〜/图书馆/日志/产品版本
PRODUCT would be one of the following:
PRODUCT 将是以下之一:
IntelliJIdea (IntelliJ IDEA Ultimate Edition)
IdeaIC (IntelliJ IDEA Community Edition)
RubyMine
WebIde (WebStrom and PhpStorm use this common directory)
PyCharm
回答by mmla
Here is a one-liner that should delete all the files associated with RubyMine and print the files found and deleted to stdout.
这是一个单行程序,它应该删除与 RubyMine 关联的所有文件,并将找到并删除的文件打印到标准输出。
find ~/Library -type d -iname '*rubymine*' -exec rm -rfv {} \;
回答by mipadi
You can just drag the application to the trash. If you really want to get the preference files, look in ~/Library/Application Supportfor a folder called "JetBrains" or "RubyMine", and look in ~/Library/Preferencesfor the preferences file; it probably starts with "com.jetbrains" or has "jetbrains" or "rubymine" in the filename.
您只需将应用程序拖到垃圾箱即可。如果您真的想获取首选项文件,请查找~/Library/Application Support名为“JetBrains”或“RubyMine”的文件夹,然后查找~/Library/Preferences首选项文件;它可能以“com.jetbrains”开头或在文件名中有“jetbrains”或“rubymine”。
回答by Marnen Laibow-Koser
Generally Mac OS applications are pretty well-behaved, and you can just get rid of the application bundle itself (preferences may actually be handy to keep around). If you'd like a general solution for getting rid of preference files automatically, try AppTrap.
通常,Mac OS 应用程序表现得非常好,您可以摆脱应用程序包本身(保留首选项实际上可能很方便)。如果您想要自动删除首选项文件的通用解决方案,请尝试AppTrap。

