Skip to content
Follow
Ubuntu Linux

How to Install Android Studio on Ubuntu 24.04

Richard
Written by
Richard
Dec 16, 2024 Updated Aug 13, 2026 3 min read
How to Install Android Studio on Ubuntu 24.04
How to Install Android Studio on Ubuntu 24.04

Android Studio on Ubuntu 24.04 is Google’s official app building program that puts code editors and phone simulators in one workspace. You need at least 8GB of RAM and 8GB of disk space to run the setup smoothly.

Snap packages make the installation simple by handling automatic updates in the background. You can install the program quickly using the Ubuntu Software Center or your terminal.

⚡ Quick Answer

You can install Android Studio on Ubuntu 24.04 using the Snap package manager. Open a terminal and run ‘sudo snap install android-studio –classic’. Afterwards, search for Android Studio in your applications menu or run ‘sudo snap run android-studio’ from the terminal.

Install Android Studio using the App Center

Ubuntu’s App Center provides a graphical path for software setup.

Searching for Android Studio in the Ubuntu App Center interface
Searching for Android Studio in the Ubuntu App Center interface

Applications appear in the desktop launcher once installation completes.

Android Studio app in App Center
Android Studio app in App Center

Install the app

Android Studio app in App Center install
Android Studio app in App Center install

Application shortcuts reside in the left sidebar for quick access.

Android Studio app home
Android Studio app home

Install Android Studio using PPA repository

Personal Package Archives (PPAs) supply alternative release channels on Ubuntu 24.04. Java development kits are required before running the software. Install the default runtime package via terminal using `sudo apt install default-jdk`.

Software dependencies must resolve successfully before launching the IDE (Integrated Development Environment).

Terminal execution starts with the default runtime package.

🐧Bash / Shell
sudo update
sudo apt install default-jdk

Repository additions require specific commands to fetch the software sources.

🐧Bash / Shell
sudo add-apt-repository ppa:maarten-fonville/android-studio

Package index refreshes ensure local caches match remote repositories.

🐧Bash / Shell
sudo apt update
sudo apt install android-studio

Desktop launchers appear in the left sidebar once setup finishes.

Removal commands clean up unwanted packages.

Snap packages encapsulate applications with all necessary dependencies included. Checking for the package manager happens via terminal using `snap version`.

Package management systems bundle runtime dependencies within isolated containers. Verification commands confirm whether the background service runs properly.

🐧Bash / Shell
sudo apt install snapd

IDE installation proceeds through the package manager.

🐧Bash / Shell
sudo snap install android-studio --classic

Dock shortcuts launch the newly installed workspace.

Command-line invocation offers an alternative startup method.

🐧Bash / Shell
sudo snap run android-studio

Removal operations clean the system state.

Flatpak containers isolate applications from the host operating system. Package installations require terminal commands like `sudo apt update` followed by `sudo apt install flatpak`.

Distribution frameworks outside native repositories require explicit setup.

Sandbox runtimes establish the foundation for containerized applications.

System updates prepare the package database for new additions.

🐧Bash / Shell
sudo apt update && sudo apt upgrade
sudo apt install flatpak

Remote sources expand available software catalogs.

🐧Bash / Shell
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Container deployment finalizes the software setup.

💻Code
flatpak install flathub com.google.AndroidStudio

Graphical software centers or terminal commands handle application startup.

💻Code
flatpak run com.google.AndroidStudio

Uninstallation commands purge container files from storage.

💻Code
flatpak uninstall com.google.AndroidStudio

Configuration finishes here.

Conclusion

Multiple installation paths exist for setting up the environment. Developers can choose between the App Center, PPA repositories, Snap packages, or Flatpak containers.

  • Multiple Installation Methods: You can choose various methods to install Android Studio, including App Center, PPA repository, Snap package manager, and Flatpak.
  • Java Requirement: Ensure that Java is installed prior to using PPA or Snap, as it is essential for running Android Studio.
  • Ease of Use: Each installation method offers a straightforward approach, making it accessible for developers of all levels.
  • Uninstallation: Uninstalling Android Studio is simple, with commands available for each installation method.
  • Enhanced Development Tools: Android Studio provides powerful tools for coding, debugging, and testing, streamlining the app development process.

Proper workspace configuration lays the groundwork for building robust mobile applications.

How do I completely install Android Studio?

After copying the android-studio folder into your Program Files folder, navigate to the `android-studio/bin` directory. Then, launch `studio64.exe` for 64-bit systems or `studio.exe` for 32-bit systems. The Setup Wizard will guide you through installing any recommended SDK packages.

How to run Android Studio on Linux after installation?

Here, type `ls` to see the files. Now, we need to execute the `studio.sh` bash script. Type `sudo ./studio.sh` and press Enter. You'll then be prompted for your root password.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Uninstall Software in Ubuntu Linux
Ubuntu Linux How to Uninstall Software in Ubuntu Linux
How to Install Ubuntu Linux
Ubuntu Linux How to Install Ubuntu Linux
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *