How to install Android Studio on Ubuntu (Linux)?


Before installing android studio on Ubuntu, make sure that your system has Java jdk( version 6+) installed.

Check your system has Java jdk or not using below command..

Open your terminal (ctrl+alt+tab) and type

java -version


if your system has Java jdk installed then your command output will be like ...

java version "1.8.0_45"
Java(TM) SE Runtime Environment (build 1.8.0_45-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode) 
(note - output is based on version)


if Java jdk not installed then follow this method:

Installing Java jdk 8 on Ubuntu

Open your terminal (ctrl+alt+tab) and type

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


after that

Configure your Java jdk 8 as Default

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


Now Install Android Studio on Ubuntu


Download Android Studio for Linux (32/64-based on your system)
download link
http://developer.android.com/sdk/index.html

Download Android Studio and save it inside home directory.

Extract the file inside home directory.

after that
Open your terminal (ctrl+alt+tab) and type

cd android-studio/bin/
./studio.sh


Complete the installation.


Newest
Previous
Next Post »