How to install Android Studio on Ubuntu?

前端 未结 17 1253
情深已故
情深已故 2020-11-30 20:38

I have to install Android Studio on Ubuntu and I have used this link to download Android Studio.

Is there any easy way to install Studio on Ubuntu?

17条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 21:02

    In order to install Android Studio on Ubuntu Studio 14.04 and derivatives, do the following:

    Step 1: Open a terminal using the Dash or pressing Ctrl + Alt + T keys.

    Step 2: If you have not, add that repository with the following command:

    sudo add-apt-repository ppa:paolorotolo/android-studio
    

    Step 3: Update the APT with the command:

    sudo apt-get update
    

    Step 4: Now install the program with the command:

    sudo apt-get install android-studio
    

    Step 5: Once installed, run the program by typing in Dash:

    studio
    

提交回复
热议问题