我最近在我的 Macbook Pro 上下载了 Android Studio,但每次打开它时我都搞砸了。它给了我插件错误和其他几个错误。我需要从我的 Mac 上完全卸载它。我尝试从我的 mac 上删除它,然后再次安装它,就像第一次一样,但它什么也没做,现在又出现了同样的问题。
我怎样才能完全删除它并重新安装一个新的?
在终端中执行这些命令(不包括带有主题标签的行 - 它们是注释):
# Deletes the Android Studio application
# Note that this may be different depending on what you named the application as, or whether you downloaded the preview version
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 the Android Studio's plist file
rm -Rf ~/Library/Preferences/com.google.android.*
# Deletes the Android Emulator's plist file
rm -Rf ~/Library/Preferences/com.android.*
# Deletes mainly plugins (or at least according to what mine (Edric) contains)
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*
rm -Rf ~/Library/Caches/Google/AndroidStudio*
# Deletes older versions of Android Studio
rm -Rf ~/.AndroidStudio*
如果您想删除所有项目:
rm -Rf ~/AndroidStudioProjects
删除 gradle 相关文件(缓存和包装器)
rm -Rf ~/.gradle
使用以下命令删除所有Android虚拟设备(AVD)和密钥库。
注意:此文件夹也被其他 Android IDE 使用,因此如果您仍在使用其他 IDE,您可能不想删除此文件夹)
rm -Rf ~/.android
删除Android SDK工具
rm -Rf ~/Library/Android*
模拟器控制台身份验证令牌
rm -Rf ~/.emulator_console_auth_token
感谢那些对此答案发表评论/改进的人!
rm
的标志区分大小写1(与大多数其他命令一样),这意味着 f
标志必须为小写。但是,r
标志也可以大写。rm
的标志可以组合在一起或分开。它们不必组合在一起。r
标志表示 rm
命令应该-
a尝试删除植根于每个文件参数的文件层次结构。 -
rm
手册页上的DESCRIPTION部分(有关详细信息,请参阅)man rm
f
标志表示 rm
命令应该-
a尝试删除文件而不提示确认,无论文件的权限如何。 -
rm
手册页上的DESCRIPTION部分(有关详细信息,请参阅)man rm
在终端中运行以下命令:
rm -Rf /Applications/Android\ Studio.app
rm -Rf ~/Library/Preferences/AndroidStudio*
rm -Rf ~/Library/Preferences/com.google.android.*
rm -Rf ~/Library/Preferences/com.android.*
rm -Rf ~/Library/Application\ Support/AndroidStudio*
rm -Rf ~/Library/Logs/AndroidStudio*
rm -Rf ~/Library/Caches/AndroidStudio*
rm -Rf ~/.AndroidStudio*
rm -Rf ~/.gradle
rm -Rf ~/.android
rm -Rf ~/Library/Android*
rm -Rf /usr/local/var/lib/android-sdk/
删除所有项目:
rm -Rf ~/AndroidStudioProjects
适用于在 MacOS 10.15.1 或更高版本上使用 Android Studio 4.0 或更高版本的用户。使用命令行打击:
# Deletes the Android Studio application
# Note that this may be different depending on what you named the application as, or whether you downloaded the preview version
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/Google/AndroidStudio*
# Deletes the Android Studio's plist file
rm -Rf ~/Library/Preferences/com.google.android.*
# Deletes the Android Emulator's plist file
rm -Rf ~/Library/Preferences/com.android.*
# Deletes mainly plugins (or at least according to what mine (Edric) contains)
rm -Rf ~/Library/Application\ Support/Google/AndroidStudio*
# Deletes all logs that Android Studio outputs
rm -Rf ~/Library/Logs/Google/AndroidStudio*
# Deletes Android Studio's caches
rm -Rf ~/Library/Caches/Google/AndroidStudio*
# Deletes older versions of Android Studio
rm -Rf ~/.AndroidStudio*
差异
库/首选项/Google/AndroidStudio*
库/日志/Google/AndroidStudio*
库/缓存/Google/AndroidStudio*
我在 Macbook Pro 上也遇到了同样的问题。我采取了这些非常简单的步骤并重新安装了 Android Studio。
** 链接包含图片,有问题请查看。
这些非常简单的步骤可以解决您的问题。
如果您不在其他地方使用 gradle,您也可以删除 gradle 文件:
rm -Rfv ~/.gradle/
因为 .gradle 文件夹包含不再需要的缓存工件。
由 Simon 单独列出的一些文件也可以通过类似于以下命令的方式找到,但有一些关于彻底性的额外保证,并且不会鲁莽地使用带有通配符的 rm -rf:
find ~ \
-path ~/Library/Caches/Metadata/Safari -prune -o \
-iname \*android\*studio\* -print -prune
另外不要忘记 SDK,它现在与应用程序分离,以及 ~/.gradle/ (参见 vijay 的回答)。
我偶然发现了另一个应该删除的目录(我的系统上的日期为 2021 年 4 月):
rm -Rf ~/Library/Application\ Support/Android\ Open\ Source\ Project*
...并感谢 Hu1buerger https://gist.github.com/talal/25d6b05b6969c2a8459b2b3abb86481f
rm -Rf ~/库/应用程序\支持/JetBrains*
# 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*