- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近在我的 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
感谢那些对此答案发表评论/改进的人!
<小时/>rm
的标志区分大小写 1 (与大多数其他命令一样),这意味着 f
标志必须为小写。不过,r
标志也可以大写。rm
的标志可以组合在一起,也可以分开。它们不必组合起来。r
标志表示 rm
命令应该-
attempt to remove the file hierarchy rooted in each file argument. - DESCRIPTION section on the manpage for
rm
(Seeman rm
for more info)
f
标志表示 rm
命令应该-
attempt to remove the files without prompting for confirmation, regardless of the file's permissions. - DESCRIPTION section on the manpage for
rm
(Seeman rm
for more info)
关于macos - 如何在Mac上彻底卸载Android Studio?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17625622/
我是一名优秀的程序员,十分优秀!