In this article, we will have explained the necessary steps to install Android Studio on Ubuntu 22.04 LTS. Before continuing with this tutorial, make sure you are logged in as a user with sudo
privileges. All the commands in this tutorial should be run as a non-root user.
Android Studio is the Integrated Development Environment for Android app development. Whenever you want to start developing android applications, the easiest and the most effective IDE is always the Android studio. These features were one reason why this tool replaced the formerly popular tool Eclipse IDE. It is available for download on Windows, macOS, and Linux-based operating systems.
Prerequisite:
- Operating System with Ubuntu 22.04
- Server IPv4 Address with Superuser Privileges (Root Access)
- Gnome Terminal for Linux Desktop
- PuTTy SSH client for Windows or macOS
- Powershell for Windows 10/11
- Familiar with APT Commands
Install Android Studio on Ubuntu 22.04 LTS
Step 1. First, before you start installing any package on your Ubuntu server, we always recommend making sure that all system packages are updated.
sudo apt update sudo apt upgrade sudo apt install software-properties-common apt-transport-https wget
Step 2. Install JDK.
It is required to have Java Development Kit (JDK) installed on your system to work on Android Studio. Run the below-given command for JDK installation:
sudo apt install openjdk-11-jdk
Check the version of the installed JDK:
java --version
Step 3. Install Android Studio on Ubuntu Linux.
Installing Android Studio on your Ubuntu 22.04 Jammy Jellyfish system is straightforward, Now set up and add a PPA repository of Android Studio to your Ubuntu:
sudo add-apt-repository ppa:maarten-fonville/android-studio
Once the package repository has been added successfully, you can then update your system then proceed to install Android Studio on Ubuntu:
sudo apt update sudo apt install android-studio
Step 3. Launch Android Studio.
Now open the ‘Application’ menu and search for Android Studio should now be successfully installed on your system and ready for use. During the first-time startup, the application will show you a wizard to initialize the environment. Follow the wizard and configure the environment as per your choices. It will also prompt install the required components for Android Studio.
That’s all you need to do to install Android Studio on Ubuntu 22.04 LTS Jammy Jellyfish. I hope you find this quick tip helpful. For further reading on the installation of Android Studio, please refer to their official knowledge base. I hope this article was helpful to you. If you find it useful, don’t forget to share it with your friend and family. Also, if you have any questions, please feel free to ask in the comments section. We are always there to assist you.