在Ubuntu和Linux Mint上轻松安装Android Studio
Google Studio自己的Android开发工具Android Studio Android Studio是带有ADT插件的Eclipse的不错替代品。可以从源代码安装Android Studio,但是在本快速发布中,我们将了解如何在Ubuntu 18.04、16.04和相应的Linux Mint变体中安装Android Studio。
在继续安装Android Studio之前,请确保已在Ubuntu中安装了Java。
使用Snap在Ubuntu和其他发行版中安装Android Studio
自从Ubuntu开始专注于Snap软件包以来,更多的软件已经开始提供易于安装的Snap软件包。 Android Studio就是其中之一。 Ubuntu用户只需在软件中心中找到Android Studio应用程序,然后从那里进行安装。
我们可以在软件中心中找到Android Studio
如果从软件中心安装Android Studio时看到错误,则可以使用Snap命令安装Android Studio。
sudo snap install android-studio --classic
替代方法1:在Ubuntu中使用umake安装Android Studio
我们还可以使用Ubuntu Developer Tools Center(现在称为Ubuntu Make)轻松安装Android Studio。 Ubuntu Make提供了一个命令行工具来安装各种开发工具,IDE等。UbuntuMake在Ubuntu存储库中可用。
要安装Ubuntu Make,请在终端中使用以下命令:
sudo apt-get install ubuntu-make
安装Ubuntu Make之后,请使用以下命令在Ubuntu中安装Android Studio:
umake android
在安装过程中,它将为我们提供几个选项。我认为我们可以处理。如果我们决定卸载Android Studio,则可以通过以下方式使用相同的umake工具:
umake android --remove
替代方法2:通过非官方的PPA在Ubuntu和Linux Mint中安装Android Studio
感谢Paolo Ratolo,我们有了一个PPA,可用于在Ubuntu 16.04、14.04,Linux Mint和其他基于Ubuntu的发行版中轻松安装Android Studio。请注意,它将下载大约650 MB的数据。因此,请注意互联网连接以及数据费用(如果有)。
打开一个终端并使用以下命令:
sudo apt-add-repository ppa:paolorotolo/android-studio sudo apt-get update sudo apt-get install android-studio
卸载Android Studio:
如果还没有,请安装PPA Purge:
sudo apt-get install ppa-purge
现在,使用PPA Purge清除已安装的PPA:
sudo apt-get remove android-studio
sudo ppa-purge ppa:paolorotolo/android-studio