如何在Ubuntu上安装较旧版本的Android Studio 2.1.2

huangapple go评论78阅读模式
英文:

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,请查看此处

  1. 在您的计算机上安装JDK:

    sudo apt install openjdk-11-jdk
    
  2. 将压缩的tar.gz文件解压到您喜欢的位置。

  3. 在终端中打开android-studio/bin目录,并运行命令:

    ./studio.sh
    

这将执行Android Studio,现在该应用程序已启动并运行。


如果您不一定需要旧版本,一个更简单的过程是:

  1. 在终端上运行此命令:

     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

  1. Install JDK on your PC

    sudo apt install openjdk-11-jdk
    
  2. Extract the zipped tar.gz file to your preferred location.

  3. 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:

  1. 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.

huangapple
  • 本文由 发表于 2020年8月26日 16:00:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/63593116.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定