23

I love the Google Earth program in windows, but what does it take to get it to run in Linux and on Ubuntu?

Lucio
  • 18,843
Ken
  • 231
  • 1
  • 2
  • 3

4 Answers4

24

To install Google Earth, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

For 32bit:

wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb

For 64bit:

wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb

Once the download is done, just run the 2 commands below:

sudo dpkg -i google-earth-stable*.deb
sudo apt-get -f install

Once installed, you can run it multiple ways:

  1. Launch the software from the Dash.

  2. Press Alt and F2 and type google-earth.

  3. Open a terminal and type google-earth &.

Mitch
  • 107,631
9

I'm surprised no one mentioned the "easy" (and also the "official") way:

  • Visit the Google Earth Pro Website, now called "Google Earth Pro (GEP) for Desktop"
  • Follow the instructions until you reach the Download and Agreement page
  • Download and open the .deb (For Debian/Ubuntu) that matches your architecture, either 32 or 64 bits. If not sure, or if you're using Ubuntu 13.10 onwards, choose the 32-bit one.
  • It will open in Ubuntu Software Center. Click Install. Done :)

This is also a simpler version of the method recommended by Ubuntu Community Help Wiki on GoogleEarth. (simpler because lsb_core, as all other dependencies, are automatically installed by Software Center)

MestreLion
  • 20,086
  • 1
    As of 2018-11-17 the GE website says Chrome is required, but clicking on "pro" option takes one to the above linked download page and doesn't appear to need Chrome (I have it installed but it's not used whilst GE is running). – pbhj Nov 17 '18 at 22:20
  • 1
    Thanks @pbhj ! I've edited my answer to reflect this new information – MestreLion Nov 21 '18 at 06:13
2

Just install Ubuntu Tweak and under the apps tab, you will find a link to install Google Earth directly.

enter image description here

Parto
  • 15,325
  • 24
  • 86
  • 117
1

There is also PPA for Google Earth, but for some reason there is no google-earth-stable, but google-earth-ec package. The ec is Enterprise Client. The difference is that it will ask (once) to which server to login, defaulting to public google server. And the icon is ugly yellow.

  1. Import google signing key

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

  1. Add Google Earth PPA

sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/earth/deb/ stable main" >> /etc/apt/sources.list.d/google.list'

  1. Update

sudo apt update

  1. Install

sudo apt install google-earth-ec-stable

PeterM
  • 694
  • 1
  • 7
  • 22