在Linux Mint 20 Ulyana上安装Android Studio
步骤1.在运行以下教程之前,重要的是通过apt
在终端中运行以下命令来确保系统是最新的:
sudo apt update
步骤2.安装Java。
运行以下命令在Linux Mint 20上安装Oracle JDK 11:
sudo apt install openjdk-11-jdk
步骤3.在Linux Mint系统上启用并安装Snapd。
Snap适用于Linux Mint 20,需要先删除Linux Mint上的安装。这可以从命令行完成:/etc/apt/preferences.d/nosnap.pref
sudo rm /etc/apt/preferences.d/nosnap.pref sudo apt update
然后,运行以下命令以安装snapd:
sudo apt install snapd
步骤4.在Linux Mint 20上安装Android Studio。
- 使用Snapd安装Android Studio
要安装Android Studio,只需使用以下命令:
sudo snap install android-studio --classic
- 从官方存储库安装Android Studio
我们需要将Android Studio存储库添加到Linux Mint系统,以使我们能够安装Android Studio:
sudo apt-add-repository ppa:maarten-fonville/android-studio
完成后,更新apt并继续安装Android Studio:
sudo apt update sudo apt install android-studio
步骤5.访问Android Studio。
最后,从Linux Mint应用程序管理器启动Android Studio,或者,您也可以使用bellow命令启动Android Studio:
android-studio
恭喜你!您已经成功安装了Android Studio。使用本教程在Linux Mint系统上安装最新版本的Android Studio。如需其他帮助或有用信息,建议您查看Android Studio官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39454.html