Skip to content
Follow
Ubuntu Linux

How to Install Google Earth on Ubuntu 24.04

Richard
Written by
Richard
Dec 30, 2024 Updated Jul 13, 2026 3 min read
How to Install Google Earth on Ubuntu 24.04
How to Install Google Earth on Ubuntu 24.04

Installing Google Earth on Ubuntu 24.04 involves downloading the official .deb package from Google and using your system’s tools to install it.

Google Earth is a program that lets you see the entire world from your computer, showing you satellite pictures, 3D landscapes, and detailed city views.

For Ubuntu 24.04, you’ll get the latest stable version of the Google Earth .deb file. You can then install it easily using either the command line or the graphical software center.

⚡ Quick Answer

Download the .deb package from Google’s website. Then, open your terminal and navigate to the download directory. Install the package using the command sudo dpkg -i google-earth-pro-stable_current_amd64.deb.

Prepare Ubuntu

📝Good to Know
Before installing Google Earth, you will want to update and install some essential packages.

Run the command to do that.

🐧Bash / Shell
sudo apt update
sudo apt upgrade

Then, install some essential packages by running the command below.

🐧Bash / Shell
sudo apt install curl software-properties-common apt-transport-https ca-certificates

Import Google Earth repository GPG key

Next, run the command below to import Google’s repository GPG key to authenticate installed packages.

💻Code
curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor | sudo tee /usr/share/keyrings/google-earth.gpg > /dev/null

Add Google Earth repository

To install Google Earth on Ubuntu, you first need to add its software source, known as a repository. This tells your computer where to find the necessary Google Earth files. You’ll use a specific command to add this repository, which is the first important step to get Google Earth ready on your Ubuntu system.

Command Prompt
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/google-earth.gpg] http://dl.google.com/linux/earth/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-earth.list

Update and install Google Earth.

Finally, update the Ubuntu package index and install Google Earth using the command below.

🐧Bash / Shell
sudo apt update
sudo apt install google-earth-pro-stable

Once Google Earth is installed, you can launch it from the command line using the command below.

💻Code
google-earth-pro

From the desktop, click on Activities in the top left corner of your screen. Select Show Applications.

Search for Google Earth in the application list or use the search bar. Click on the Google Earth icon to launch the application.

Google Earth install on Ubuntu
Google Earth install on Ubuntu

Start using Google Earth.

Uninstall Google Earth

Uninstalling Google Earth from your Ubuntu computer involves using a few straightforward commands. These commands remove the program and also clean up any software sources you added during installation. Using commands like ‘sudo apt remove google-earth-pro-stable’ will fully remove Google Earth from your system.

🐧Bash / Shell
sudo apt remove google-earth-pro-stable
sudo rm /etc/apt/sources.list.d/google-earth.list
sudo rm /usr/share/keyrings/google-earth.gpg

That should do it!

Conclusion:

Installing Google Earth on Ubuntu is a straightforward process that enhances your ability to explore and learn about our planet. Here are the key takeaways:

  • User-Friendly Installation: The installation process can be completed in simple steps.
  • Comprehensive Exploration: Google Earth provides a wealth of information through 3D imagery, terrain, and street views.
  • Educational Resource: It’s an invaluable tool for students, educators, and professionals.
  • Easy Access: Once installed, launching Google Earth is easy from both the command line and desktop applications.
  • Simple Uninstallation: Removing Google Earth is just as easy, ensuring you can manage your applications effectively.

Start your journey of exploration with Google Earth today!

Can I install Google Earth on Ubuntu?

Recommended installation methods deb packages for Ubuntu. Open http://www.google.com/earth/download/ge/agree.html and download Google Earth for Linux. Select the . deb package for your CPU architecture (32 or 64-bit).

Is there a Linux version of Google Earth?

Import and export GIS data, and go back in time with historical imagery. Available on PC, Mac, or Linux. By installing, you agree to Google Earth's Privacy Policy. You are downloading version 7.3 of Google Earth Pro.

Can I install Google on Ubuntu?

Google Chrome is not available in Ubuntu's official repositories because it is proprietary software. Installing it requires adding Google's APT repository manually. This process also sets up automatic updates so Chrome keeps itself current the same way other system packages do.

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 Connect Bluetooth Devices to Ubuntu
Ubuntu Linux How to Connect Bluetooth Devices to Ubuntu
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

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

Leave a Comment

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