英文:
how to install the older version of android studio 2.1.2 in ubuntu
问题
如何在Ubuntu上安装较旧版本的Android Studio 2.1.2?
英文:
how to install the older version of android studio 2.1.2 in ubuntu ?
答案1
得分: 1
我相信如果您想要安装特定版本的Android Studio,您已经有了tar.gz安装文件。有了这个,让我们继续。
编辑:要获取旧版本的Android Studio,请查看此处。
-
在您的计算机上安装JDK:
sudo apt install openjdk-11-jdk
-
将压缩的tar.gz文件解压到您喜欢的位置。
-
在终端中打开
android-studio/bin
目录,并运行命令:./studio.sh
这将执行Android Studio,现在该应用程序已启动并运行。
如果您不一定需要旧版本,一个更简单的过程是:
-
在终端上运行此命令:
sudo apt-get install android-studio
这将自动从Ubuntu应用商店下载并安装Android Studio。
英文:
I believe if you want to install a specific Android Studio version, you already have the tar.gz installation file. with that lets move on.
EDIT: To get older versions of Android Studio, check here
-
Install JDK on your PC
sudo apt install openjdk-11-jdk
-
Extract the zipped tar.gz file to your preferred location.
-
open the
android-studio/bin
directory in your terminal and run the command:./studio.sh
That would execute Android Studio, now the app is up and running.
A simpler process if you do not necessarily need an older version would be:
-
running this command on your terminal:
sudo apt-get install android-studio
This would automatically download Android Studio and Install it from the Ubuntu App Store.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论