How to install Android Studio on Ubuntu?

AndroidUbuntuAndroid Studio

Android Problem Overview


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?

Android Solutions


Solution 1 - Android

Below are the steps to install Android Studio in Ubuntu system:

1. Install JDK 6 or later

First, install Oracle JDK 8 (although you could also choose OpenJDK but it has some UI/performance issues) using WebUpd8 PPA.

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install oracle-java8-set-default

To make sure, it’s installed successfully, open a terminal and type (you should get the version number of the jdk you’ve installed e.g javac 1.8.0_11)

javac -version

2. Download and install Android Studio

Download the Android Studio package for Linux and extract it somewhere (e.g home directory). Then type :

cd android-studio/bin
./studio.sh

3. Install SDK Platforms

You need to install some SDK before you jump into building android apps. Click on Configure -> SDK Manager to open Android SDK Manager. Select the latest API (to test against target build, e.g API 19 (Android 4.4.2)) and some packages in Extras (Android Support Library and Android Support Repository). Then install the selected packages.

Solution 2 - Android

Download the Linux SDK from the Android website. Copy the folder to whereever you want to extract the contents. Open a terminal there, and then run:

sudo apt-get install unzip
sudo tar xvzf android-studio-ide-135.1641136-linux.zip
cd android-studio-ide-135.1641136-linux
./studio.sh

JDK 1.7 is required for Studio 1.0 onwards:

  1. Download the ubuntu zip from the d.android.com and repeat the steps from above

  2. Download the jdk 1.7 by executing the following commands in terminal as mentioned webupd8:

     sudo add-apt-repository ppa:webupd8team/java
     sudo apt-get update
     sudo apt-get install oracle-java7-installer
    
  3. Open Android Studio and install the SDK tools.

Caveats:

  1. If your system has a 32 bit processor, use Platform Tools r23.0.1. Refer to this bug for details.

Note: If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:

$ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1

Source: - linux-32-bit-libraries

Solution 3 - Android

Run the following command on terminal.

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

Solution 4 - Android

Don't forget to run:

> /opt/android-studio/bin/studio.sh

when you are done installing.

Solution 5 - Android

Here's how I installed android studio on xubuntu.

1. Install JDK:

Go through following commands to install jdk

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
sudo apt-get install oracle-java7-set-default

If you want to install other version of jdk than replace your version number with 7 in last two commands.

2. Download the latest android studio from official site: https://developer.android.com/studio/index.html

It is better to use latest version of android studio because I tried to install version 1.5.1 and it was not working. Then I installed version 2.1.1 and it run perfectly.

  1. Extract downloaded android studio file in whichever folder you want. Now go to extracted android studio-->bin directory and open terminal here. Now run following:

    ./studio.sh

And that's it. If you are facing any problem than comment below.

Solution 6 - Android

You can also Install using a PPA link

Solution 7 - Android

The easiest method to install [Android Studio][android-studio] (or any other developer tool) on Ubuntu is to use the [snap package][android-studio-snap] from Ubuntu Software store. No need to download Android Studio as zip, try to manually install it, add PPAs or fiddle with Java installation. The snap package bundles the latest Android Studio along with OpenJDK and all the necessary dependencies.

##Step 1: Install Android Studio Search "android studio" in Ubuntu Software, select the first entry that shows up and install it:

[![Search Android Studio on Ubuntu Software][android-studio-search]][android-studio-search] [![Android Studio on Ubuntu Software][android-studio-ubuntu-software]][android-studio-ubuntu-software]

Or if you prefer the command line way, run this in Terminal:

sudo snap install --classic android-studio

##Step 2: Install Android SDK Open the newly installed Android Studio from dashboard:

[![Android Studio app on Dash][android-studio-app]][android-studio-app]

Don't need to import anything if this is the first time you're installing it:

[![Import Dialog][import-dialog]][import-dialog]

The Setup Wizard'll guide you through installation:

[![Android Studio Setup Wizard][android-studio-wizard]][android-studio-wizard]

Select Standard install to get the latest SDK and Custom in-case you wanna change the SDK version or its install location. From here on, it's pretty straightforward, just click next-next and you'll have the SDK downloaded and installed.

[![Select Standard or Custom installation][standard-custom]][standard-custom]

##Step 3: Setting PATHs (Optional) This step might be useful if you want Android SDK's developer tool commands like adb, fastboot, aapt, etc available in Terminal. Might be needed by 3rd party dev platforms like React Native, Ionic, Cordova, etc and other tools too. For setting PATHs, edit your ~/.profile file:

gedit ~/.profile

and then add the following lines to it:

# Android SDK Tools PATH
export ANDROID_HOME=${HOME}/Android/Sdk
export PATH="${ANDROID_HOME}/tools:${PATH}"
export PATH="${ANDROID_HOME}/emulator:${PATH}"
export PATH="${ANDROID_HOME}/platform-tools:${PATH}"

If you changed SDK location at the end of Step 2, don't forget to change the line export ANDROID_HOME=${HOME}/Android/Sdk accordingly. Do a restart (or just logout and then log back in) for the PATHs to take effect.


Tested on Ubuntu 16.04LTS and above. Would work on 14.04LTS too if you [install support for snap packages first][snap-trusty].


Note: This question is similar to the AskUbuntu question ["How to install Android Studio on Ubuntu?"][askubuntu-question] and [my answer][askubuntu-answer] equally applies. I'm reproducing my answer here to ensure a full complete answer exists rather than just a link.

[android-studio]: https://developer.android.com/studio/index.html "Android Studio" [android-studio-snap]: https://snapcraft.io/android-studio "Android Studio on Snap Store" [snap-trusty]: http://www.omgubuntu.co.uk/2017/02/install-snap-apps-ubuntu-14-04 "How to install snaps on Ubuntu 14.04LTS?" [askubuntu-question]: https://askubuntu.com/questions/634082/how-to-install-android-studio-on-ubuntu/ [askubuntu-answer]: https://askubuntu.com/questions/634082/how-to-install-android-studio-on-ubuntu/941222#941222

[android-studio-search]: https://i.stack.imgur.com/f68vb.png "Search Android Studio on Ubuntu Software" [android-studio-ubuntu-software]: https://i.stack.imgur.com/x9UcC.png "Android Studio on Ubuntu Software" [android-studio-app]: https://i.stack.imgur.com/iI86v.png "Open Android Studio from Dashboard" [import-dialog]: https://i.stack.imgur.com/EyzWW.png "Import Dialog" [android-studio-wizard]: https://i.stack.imgur.com/jmdM0.png "Android Studio Setup Wizard" [standard-custom]: https://i.stack.imgur.com/jkiDn.png "Select Standard or Custom install"

Solution 8 - Android

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

Solution 9 - Android

Android Studio PPA is maintained by Paolo Rotolo. We just need to add PPA to our system and install it using the following commands:

$ sudo add-apt-repository ppa:paolorotolo/android-studio
$ sudo apt-get update
$ sudo apt-get install android-studio

For more, see allubuntu.com

Solution 10 - Android

To install android studio on ubuntu here is the simplest way possible:

First of all, you have to install Ubuntu Make before installing Android Studio. Type following commands in the same order one by one on terminal:

  1. sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make

  2. sudo apt-get update

  3. sudo apt-get install ubuntu-make

Now since you are done with Ubuntu make, use below command to install Android Studio:

  1. umake android

While installation it will give you a couple of option which you can handle. So, Installation is done. You can open it and run an App of your choice. Isn’t it very easy? Let me know if you go through any problem, I can help.

Source Install Android Studio

Solution 11 - Android

add a repository,

sudo apt-add-repository ppa:maarten-fonville/android-studio
sudo apt-get update

Then install using the command below:

sudo apt-get install android-studio

Solution 12 - Android

Android Studio is now integrated in JetBrains Toolbox:

This free tool allows to easily install all JetBrains products, and Android Studio as well. Upgrade is automatic.

JetBrains toolbox

On Ubuntu, this tools requires FUSE (Filesystem in Userspace)

Solution 13 - Android

Hi If you want to install android studio on ubuntu you shoudl first have Java JDk on ubuntu. Installing Java SDK

First you have to install Oracle on Java 7 (JDK and JRE)

Download Java SDK 32 or 64 bit depending upon your version.

java sdk on ubuntu

Then extract the file in the /tmp folder.Al dialogue box will pop up, click on replace all.An error will also pop out click close.

Go to tmp folder,a new folder name jdk and version must be created.right click on the folder and then click on rename and copy the name of the folder.

Also read How to Install Genymotion on Ubuntu First write this command and click enter.

install android sdk on ubuntu linux

sudo su

Then write this command and press enter

if [ ! -d '/usr/lib/jvm' ]; then mkdir /usr/lib/jvm; fi

Paste this command

mv /tmp/jdk1.8* /usr/lib/jvm/  

jdk1.8* = replace it with the name of the extracted folder in this example =jdk1.8.0_05

and press enter

sdk install linux

java,javac,jar,javaws = we have to replace these

update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk1.8*/bin/java 1065
update-alternatives --install /usr/bin/javac javac /usr/lib/jvm/jdk1.8*/bin/javac 1065
update-alternatives --install /usr/bin/jar jar /usr/lib/jvm/jdk1.8*/bin/jar 1065
update-alternatives --install /usr/bin/javaws javaws /usr/lib/jvm/jdk1.8*/bin/javaws 1065
update-alternatives --config java
java -version

This was taken from http://emulatorforpc.com/best-android-emulator-ubuntu/

Solution 14 - Android

I was just investigating this issue now, you should use Ubuntu Make

Which "is a command line tool which allows you to download the latest version of popular developer tools on your installation"

Solution 15 - Android

You could always follow the official guide on how to install Android Studio on Linux. There's even a video you can watch!

https://developer.android.com/studio/install.html

Remember to select Linux in the drop-down box.

Screenshot of video

To summarise the steps: download Android Studio and extract it and execute studio.sh to run it. If you're running 64-bit Ubuntu, you will need to run:

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6

Solution 16 - Android

Follow the steps via terminal:

  1. sudo add-apt-repository ppa:webupd8team/java
  2. sudo apt-get update
  3. sudo apt-get install oracle-java8-installer

after then:

  1. sudo apt-get install oracle-java8-set-default

then;

  1. Download Android Studio from "https://developer.android.com/studio/index.html";, use All Android Studio Packages.
  2. Unzip the file.

At last type via terminal :

  1. cd android-studio
  2. cd bin
  3. ./studio.sh

Then follow the commands and you're ready to go.

Solution 17 - Android

I was having having an issue with umake being an outdated version. What fixed it was:

sudo apt remove --purge ubuntu-make
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt update
sudo apt install ubuntu-make
umake android

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSunView Question on Stackoverflow
Solution 1 - AndroidGrIsHuView Answer on Stackoverflow
Solution 2 - AndroidDroidekasView Answer on Stackoverflow
Solution 3 - AndroidElijah KeyaView Answer on Stackoverflow
Solution 4 - AndroidJose CastroView Answer on Stackoverflow
Solution 5 - AndroidParsania HardikView Answer on Stackoverflow
Solution 6 - AndroidMuthuView Answer on Stackoverflow
Solution 7 - AndroidRohan 'HEXcube' VillothView Answer on Stackoverflow
Solution 8 - AndroidHassan ShahbazView Answer on Stackoverflow
Solution 9 - Androidly188View Answer on Stackoverflow
Solution 10 - AndroidNavneet GoelView Answer on Stackoverflow
Solution 11 - AndroidSuperNovaView Answer on Stackoverflow
Solution 12 - AndroidBenoitView Answer on Stackoverflow
Solution 13 - AndroidMayank JhaView Answer on Stackoverflow
Solution 14 - AndroidEdenView Answer on Stackoverflow
Solution 15 - AndroidFlimmView Answer on Stackoverflow
Solution 16 - AndroidSaurabh SinghView Answer on Stackoverflow
Solution 17 - Androidcport1View Answer on Stackoverflow