当前位置: 首页>>技术教程>>正文


完全卸载 Android Studio

, ,

问题描述

前段时间我使用以下建议的方法安装了 Android Studio:

To set up Android Studio on Linux:

Unpack the downloaded Tar file, android-studio-ide–linux.zip, into an appropriate location for your applications. To launch Android Studio, navigate to the android-studio/bin/ directory in a terminal and execute studio.sh. You may want to add android-studio/bin/ to your PATH environmental variable so that you can start Android Studio from any directory. Follow the links to install the SDK outside of the Android Studio directories.

无论出于何种原因,它已经变得腐败,并坚持我必须 un-install 和 re-install。但是,我终其一生都找不到如何使用 un-install 的方法。

我没有使用 apt-get 所以我不能做 apt-get remove

有没有人有什么建议?

最佳方法

我建议检查安装目录中的自述文件或卸载脚本,但一般来说:按照相反的顺序执行安装操作,并删除您添加为设置或系统上与该安装相关的文件的所有内容。


使用 tar 文件完成的安装通常使用 rm 命令卸载。您转到执行此操作的目录:“将下载的 Tar 文件 android-studio-ide–linux.zip 解压缩到适合您的应用程序的位置”和 rm 此处创建的文件和目录。

如果您也执行了“您可能想要将 android-studio/bin/ 添加到您的 PATH 环境”,您也需要通过从您添加此 PATH 的文件中删除 android-studio/bin/ 来撤消此更改。

次佳方法

这些是 Android Studio 1.0.2 的默认位置,可以通过编辑 ..../android-studio/bin/idea.properties 来更改它们。

  1. 删除android-studio文件夹;

  2. 如果sdk文件夹不在android-studio目录,则删除;

  3. 删除 ~/.AndroidStudio ,其中包含 configsystem

  4. 删除 ~/.android ;

  5. 如果您使用“配置”->“创建桌面条目”创建了快捷方式,请删除 ~/.local/share/applications/jetbrains-android-studio.desktop

注意:添加到上面的第 5 步 – 有时图标启动器可以位于以下位置之一:

/usr/share/applications
/usr/local/share/applications

如果您的启动器文件位于前两个目录中的任何一个,您将需要 root 权限才能将其删除。

PPA 从您的 Linux 发行版中完全删除 Android Studio 的更深入步骤还包括删除与 Android Studio 相关的 PPA。

在 Ubuntu 16.04 中,

  • 转到软件和更新 >其他软件

  • 向下滚动列表并选择以查找与 Android-studio 相关的那些

  • 单击删除并进行身份验证

这有助于停止更新和非常烦人的错误消息:The package has not been installed. I can't find the archive for it.

第三种方法

对于 re-configure,您必须删除以下(隐藏)文件夹:

~/.android
~/.AndroidStudio

要在文件管理器中显示这些隐藏文件夹,请在您的主目录(又名 “~”)中按 Ctrl + H

第四种方法

对于使用 Ubuntu make (umake android) 安装 Android Studio 的人,您只需运行以下命令即可卸载它:

umake android --remove

之后,只需删除 /home 文件夹中 Android Studio 的相关文件夹:

rm -r ~/.AndroidStudio
rm -r ~/.android

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/11931.html,未经允许,请勿转载。