gpt4 book ai didi

macos - 如何在Mac上彻底卸载Android Studio?

转载 作者:行者123 更新时间:2023-12-03 03:55:58 27 4
gpt4 key购买 nike

我最近在我的 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) 和 keystore 。

注意:此文件夹也被其他 Android IDE 使用,因此如果您仍在使用其他 IDE,您可能不想删除此文件夹)

rm -Rf ~/.android

删除Android SDK工具

rm -Rf ~/Library/Android*

模拟器控制台身份验证 token

rm -Rf ~/.emulator_console_auth_token

感谢那些对此答案发表评论/改进的人!

<小时/>

注释

  1. rm 的标志区分大小写 1 (与大多数其他命令一样),这意味着 f 标志必须为小写。不过,r 标志也可以大写。
  2. rm 的标志可以组合在一起,也可以分开。它们不必组合起来。

标志表示什么

  1. r 标志表示 rm 命令应该-

    attempt to remove the file hierarchy rooted in each file argument. - DESCRIPTION section on the manpage for rm (See man rm for more info)

  2. f 标志表示 rm 命令应该-

    attempt to remove the files without prompting for confirmation, regardless of the file's permissions. - DESCRIPTION section on the manpage for rm (See man rm for more info)

关于macos - 如何在Mac上彻底卸载Android Studio?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17625622/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com