How to install Google Earth on Ubuntu?











up vote
23
down vote

favorite
4












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










share|improve this question




























    up vote
    23
    down vote

    favorite
    4












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










    share|improve this question


























      up vote
      23
      down vote

      favorite
      4









      up vote
      23
      down vote

      favorite
      4






      4





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










      share|improve this question















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







      software-installation google-earth






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 11 '14 at 23:33









      Lucio

      12.3k2183157




      12.3k2183157










      asked May 30 '13 at 19:02









      Ken

      116113




      116113






















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          21
          down vote













          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 &.







          share|improve this answer



















          • 8




            For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
            – Susan
            Sep 28 '13 at 11:49












          • @Susan then you need to file a bug with Google about that.
            – Thomas Ward
            Oct 15 '13 at 16:28






          • 1




            I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
            – zrajm
            Apr 7 '14 at 0:54










          • Doesn't apt-get -f handles installing dependencies automatically?
            – MestreLion
            May 30 '14 at 11:43










          • @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
            – AJMansfield
            Aug 29 '15 at 19:20


















          up vote
          7
          down vote













          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"


            • ("regular" Google Earth now runs directly on Google's Chrome Browser)



          • 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)






          share|improve this answer



















          • 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 at 22:20






          • 1




            Thanks @pbhj ! I've edited my answer to reflect this new information
            – MestreLion
            Nov 21 at 6:13


















          up vote
          2
          down vote













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



          enter image description here






          share|improve this answer






























            up vote
            1
            down vote













            There is also PPA for Google Earth, but for some reason there is no google-earch-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







            share|improve this answer




















              protected by Community Oct 15 '13 at 6:54



              Thank you for your interest in this question.
              Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



              Would you like to answer one of these unanswered questions instead?














              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              21
              down vote













              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 &.







              share|improve this answer



















              • 8




                For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
                – Susan
                Sep 28 '13 at 11:49












              • @Susan then you need to file a bug with Google about that.
                – Thomas Ward
                Oct 15 '13 at 16:28






              • 1




                I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
                – zrajm
                Apr 7 '14 at 0:54










              • Doesn't apt-get -f handles installing dependencies automatically?
                – MestreLion
                May 30 '14 at 11:43










              • @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
                – AJMansfield
                Aug 29 '15 at 19:20















              up vote
              21
              down vote













              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 &.







              share|improve this answer



















              • 8




                For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
                – Susan
                Sep 28 '13 at 11:49












              • @Susan then you need to file a bug with Google about that.
                – Thomas Ward
                Oct 15 '13 at 16:28






              • 1




                I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
                – zrajm
                Apr 7 '14 at 0:54










              • Doesn't apt-get -f handles installing dependencies automatically?
                – MestreLion
                May 30 '14 at 11:43










              • @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
                – AJMansfield
                Aug 29 '15 at 19:20













              up vote
              21
              down vote










              up vote
              21
              down vote









              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 &.







              share|improve this answer














              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 &.








              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Sep 28 '17 at 16:58

























              answered May 30 '13 at 19:17









              Mitch

              82.8k14172228




              82.8k14172228








              • 8




                For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
                – Susan
                Sep 28 '13 at 11:49












              • @Susan then you need to file a bug with Google about that.
                – Thomas Ward
                Oct 15 '13 at 16:28






              • 1




                I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
                – zrajm
                Apr 7 '14 at 0:54










              • Doesn't apt-get -f handles installing dependencies automatically?
                – MestreLion
                May 30 '14 at 11:43










              • @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
                – AJMansfield
                Aug 29 '15 at 19:20














              • 8




                For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
                – Susan
                Sep 28 '13 at 11:49












              • @Susan then you need to file a bug with Google about that.
                – Thomas Ward
                Oct 15 '13 at 16:28






              • 1




                I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
                – zrajm
                Apr 7 '14 at 0:54










              • Doesn't apt-get -f handles installing dependencies automatically?
                – MestreLion
                May 30 '14 at 11:43










              • @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
                – AJMansfield
                Aug 29 '15 at 19:20








              8




              8




              For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
              – Susan
              Sep 28 '13 at 11:49






              For 64-bit 13.04 as of 28 Sep 2013, the Google Earth package seems to no longer install properly.
              – Susan
              Sep 28 '13 at 11:49














              @Susan then you need to file a bug with Google about that.
              – Thomas Ward
              Oct 15 '13 at 16:28




              @Susan then you need to file a bug with Google about that.
              – Thomas Ward
              Oct 15 '13 at 16:28




              1




              1




              I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
              – zrajm
              Apr 7 '14 at 0:54




              I found that I needed to install the package 'lsb-core' before I could get the above to work. By preceeding the dpkg command with aptitude install lsb-core I got the install to work smoothly.
              – zrajm
              Apr 7 '14 at 0:54












              Doesn't apt-get -f handles installing dependencies automatically?
              – MestreLion
              May 30 '14 at 11:43




              Doesn't apt-get -f handles installing dependencies automatically?
              – MestreLion
              May 30 '14 at 11:43












              @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
              – AJMansfield
              Aug 29 '15 at 19:20




              @MestreLion yes it does - that is the whole point of that line, to install any packages listed as missing dependencies from the dpkg step.
              – AJMansfield
              Aug 29 '15 at 19:20












              up vote
              7
              down vote













              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"


                • ("regular" Google Earth now runs directly on Google's Chrome Browser)



              • 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)






              share|improve this answer



















              • 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 at 22:20






              • 1




                Thanks @pbhj ! I've edited my answer to reflect this new information
                – MestreLion
                Nov 21 at 6:13















              up vote
              7
              down vote













              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"


                • ("regular" Google Earth now runs directly on Google's Chrome Browser)



              • 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)






              share|improve this answer



















              • 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 at 22:20






              • 1




                Thanks @pbhj ! I've edited my answer to reflect this new information
                – MestreLion
                Nov 21 at 6:13













              up vote
              7
              down vote










              up vote
              7
              down vote









              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"


                • ("regular" Google Earth now runs directly on Google's Chrome Browser)



              • 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)






              share|improve this answer














              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"


                • ("regular" Google Earth now runs directly on Google's Chrome Browser)



              • 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)







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Nov 21 at 6:08

























              answered May 30 '14 at 12:00









              MestreLion

              13.4k116796




              13.4k116796








              • 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 at 22:20






              • 1




                Thanks @pbhj ! I've edited my answer to reflect this new information
                – MestreLion
                Nov 21 at 6:13














              • 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 at 22:20






              • 1




                Thanks @pbhj ! I've edited my answer to reflect this new information
                – MestreLion
                Nov 21 at 6:13








              1




              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 at 22:20




              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 at 22:20




              1




              1




              Thanks @pbhj ! I've edited my answer to reflect this new information
              – MestreLion
              Nov 21 at 6:13




              Thanks @pbhj ! I've edited my answer to reflect this new information
              – MestreLion
              Nov 21 at 6:13










              up vote
              2
              down vote













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



              enter image description here






              share|improve this answer



























                up vote
                2
                down vote













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



                enter image description here






                share|improve this answer

























                  up vote
                  2
                  down vote










                  up vote
                  2
                  down vote









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



                  enter image description here






                  share|improve this answer














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



                  enter image description here







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Apr 13 '17 at 12:24









                  Community

                  1




                  1










                  answered Feb 11 '14 at 23:52









                  Parto

                  9,1911965103




                  9,1911965103






















                      up vote
                      1
                      down vote













                      There is also PPA for Google Earth, but for some reason there is no google-earch-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







                      share|improve this answer

























                        up vote
                        1
                        down vote













                        There is also PPA for Google Earth, but for some reason there is no google-earch-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







                        share|improve this answer























                          up vote
                          1
                          down vote










                          up vote
                          1
                          down vote









                          There is also PPA for Google Earth, but for some reason there is no google-earch-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







                          share|improve this answer












                          There is also PPA for Google Earth, but for some reason there is no google-earch-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








                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jul 19 at 19:42









                          PeterM

                          204214




                          204214

















                              protected by Community Oct 15 '13 at 6:54



                              Thank you for your interest in this question.
                              Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                              Would you like to answer one of these unanswered questions instead?



                              Popular posts from this blog

                              How did Captain America manage to do this?

                              迪纳利

                              南乌拉尔铁路局