如何在 Mac 上完全卸载 Android Studio?
也许您搞砸了当前安装的 Android Studio,或者即使在重新启动几次之后也出现了一些令人讨厌的错误,好吧,并且执行所有故障排除步骤也对您没有帮助......所以......?卸载似乎是唯一的出路,让我们看看如何从您的系统中完全卸载 Android Studio!
删除 Android Studio 的步骤
方法 #1:在 Mac 上,打开终端,然后按顺序执行这些命令
# Deletes the Android Studio application
rm -Rf /Applications/Android\ Studio.app
# Delete All Android Studio related preferences
# The asterisk here should target all folders/files beginning with the string before it
rm -Rf ~/Library/Preferences/AndroidStudio*
rm -Rf ~/Library/Preferences/Google/AndroidStudio*
# Deletes Studio's plist file
rm -Rf ~/Library/Preferences/com.google.android.*
# Deletes Emulator's plist file
rm -Rf ~/Library/Preferences/com.android.*
# Deletes main plugins
rm -Rf ~/Library/Application\ Support/AndroidStudio*
rm -Rf ~/Library/Application\ Support/Google/AndroidStudio*
# Deletes all logs that Android Studio outputs
rm -Rf ~/Library/Logs/AndroidStudio*
rm -Rf ~/Library/Logs/Google/AndroidStudio*
# Deletes Android Studio's caches
rm -Rf ~/Library/Caches/AndroidStudio*
# Deletes older versions of Android Studio (if any)
rm -Rf ~/.AndroidStudio*
瞧!就像那个 Android Studio 被完全卸载了一样!
Notes: The flags for rm are case-sensitive pay close attention to them!
方法 #2:以 GUI 方式
如果使用终端不是你的小菜一碟,那么使用 GUI 也是一种彻底根除当前 Android Studio 的简单方法
- 在你的机器上同时按下“Cmd(Command)+option+Space Bar”键
- 搜索“安卓工作室”
- 单击搜索框下方的“+”按钮。
- 然后从下拉菜单中选择“包括在内”
- 然后你会得到很多需要删除的系统文件才能完成应用程序的卸载
- 按“Cmd+A”选择所有文件然后删除它们
- 清空你的垃圾。完毕
如果您需要帮助,请使用下图更好地评估
方法#3:一个很简单的方法
假设您在这里使用的是 OS X。您只需打开应用程序文件夹并将 Android Studio 移至回收站即可。 SDK 也是如此。
GeekTip: ~/Library/Android is where your SDK is stored by default!
方法 #4:Launchpad 方式
- 本教程中的第四个方法是从 Launchpad 卸载 Android Studio。此应用程序具有灰色背景上的黑色火箭图标。
- 只需像往常一样打开启动板,然后按住 Android Studio 图标直到它开始抖动,然后点击十字 (x) 标记,然后点击它!
- 就这样,Android Studio 被卸载了!
However: If you did “You may want to add android-studio/bin/ to your PATH environmental” too you will need to undo this alteration by deleting android-studio/bin/ from the file you added this PATH too.
方法#5:我通过'umake android'命令安装了Android Studio,我该怎么办?
好吧,如果您采用较少人走的路径并使用umake 命令安装它,您应该在您的 shell 中简单地运行这些命令:
1. umake android –remove
之后,只需使用以下命令在您的/home 文件夹中删除 Android Studio 的相关文件夹:
rm -r ~/.AndroidStudio
rm -r ~/.android
包起来
卸载 Android Studio 可能是一项乏味的任务,但是这篇文章几乎包含了从 Mac 上完全卸载 Android Studio所需的一切。如您所见,将应用拖放到废纸篓可能不会完全卸载它们。如果您需要重新安装它,只需访问这里!