How to install Android Studio in Linux distributions?

1

I am new as a linux user, and I installed jdk 7 using this procedure below;

http://www.edivaldobrito.com.br/como-instalar-o-oracle-java/

Then I used this procedure to install android as shown below;

http://www.edivaldobrito.com.br/como-instalar-o-android-studio-ubuntu-14-04/

Then I went to the terminal console and typed studio and nothing.

I checked that java is installing with the command java -version

Someone can help me install Android Studio as I'm having difficulty.

    
asked by anonymous 01.08.2014 / 01:01

3 answers

4

Wladyband This is a third repository, not from Google, which may or may not be being updated. Ideally download the newer version from the link link, just unzip the studio.sh file which you should call per terminal as follows:

  ./android-studio/bin/studio.sh

From there he will run the android studio.

    
01.08.2014 / 03:39
0

Before installing, you must have the JDK.

To install the JDK:

  • Download the application: link
  • Save it to your downloads folder: ~/Downloads/ and extract it, it will look like this: ~/Downloads/android-studio/
  • Now open the lin terminal, and install the JDK, type: sudo apt-get install openjdk-9-jdk
  • install dependencies: sudo apt-get intsall lib32z1 lib32ncruses5 lib32bz2-1.0 lib32stdc++6
  • Next, navigate to the folder where you extracted Android Studio: cd ~/Downloads/android-studio/ and press "Enter"
  • Allow execution permission for the shell file: sudo chmod a+x ./bin/studio.sh .
  • run the file, type: ./bin/studio.sh , after it finishes, it will open a screen to continue.
  • Click "next", then "finish".
  • Here you have a step-by-step on video

        
    17.06.2016 / 20:43
    0

    After installing Java, if it is Debian dist, install the repositories and Android Studio with the commands below in the terminal:

    sudo add-apt-repository ppa:paolorotolo/android-studio  
    sudo apt-get update  
    sudo apt-get install android-studio
    
        
    17.06.2016 / 20:47