我最近在我的 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* # 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
f
r
尝试删除根植于每个文件参数的文件层次结构 。-手册页上的 说明 部分rm(有关man rm更多信息,请参阅)
man rm
尝试在不提示确认的情况下删除文件,无论文件的权限如何 。-手册页上的 说明 部分rm(有关man rm更多信息,请参阅)