How to install Android Studio on Ubuntu 22.04

In this tutorial, i am going to show you simplest way for how to install Android Studio on Ubuntu 22.04.

How to install Android Studio on Ubuntu 22.04

Use the below given steps and install android studio in ubuntu using terminal:

  • Step 1 – StartTerminal
  • Step 2 – Update APT Package
  • Step 3 – Installing Java OpenJDK
  • Step 4 – Installing Android Studio

Step 1 – Start Terminal

Start terminal by pressing Ctrl+Alt+T key:

Step 2 – Update APT Package

Run the following command on terminal to update Apt package list:

sudo apt-get update

Step 3 – Installing Java OpenJDK

Run the following command on terminal to install java openJK:

sudo apt install openjdk-11-jdk

Verify the installation by typing the following command on your terminal, which will print the Java version:

java -version

Step 4 – Installing Android Studio

Run the following command on terminal to install android studio:

sudo snap install android-studio --classic

Note that, The easiest way is to install Android Studio on Ubuntu 22.04 is by using the snappy packaging system.

Conclusion

In this tutorial, i have shown to you how to install Android Studio on Ubuntu 22.04.

More Tutorials

Leave a Comment