对于 64 位系统

对于 64 位系统

确保已安装 lsb-core 包!从应用程序 -> 附件 -> 终端(在面板中)或从 Dash(在新的 Unity 桌面中)打开终端,然后在终端中输入(或复制粘贴)以下命令:

sudo apt-get 安装 lsb-core

64 位用户:如果安装 32 位软件包,则应使用此项

sudo apt-get 安装 libc6-i386 libglib2.0-0:i386 libsm6:i386 \ libglu1-mesa:i386 libgl1-mesa-glx:i386 libxext6:i386 \ libxrender1:i386 libx11-6:i386 libfontconfig1:i386 lsb-core

所有这些针对旧版 Ubuntu 安装 Google Earth 的建议在 Ubuntu 16.04 上不再有效。谁能帮忙?

答案1

你可以尝试一下,我在 gnome Ubuntu LTS 16.04 中成功做到了这一点

wget -O google-earth.sh http://drive.noobslab.com/data/apps/google-earth/google-earth.sh
chmod +x google-earth.sh;sudo ./google-earth.sh

如果Google Earth中的字体比较丑,我们可以使用以下命令添加msttcorefonts:

sudo apt-get install msttcorefonts

在此处输入图片描述

答案2

对于 64 位系统

sudo apt --yes install lsb-core

cd /tmp
mkdir google-earth && cd google-earth
wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb
sudo dpkg -i google-earth-stable*.deb

# Step to show Panoramio pictures
cd /opt/google/earth/free/
sudo wget https://googledrive.com/host/0B2F__nkihfiNalQzN0ZmcjBPTGs/ge7.1.1.1580-0.x86_64-new-qt-libs-debian7-ubuntu12.tar.xz
sudo tar xvf ge7.1.1.1580-0.x86_64-new-qt-libs-debian7-ubuntu12.tar.xz

对于 32 位系统

sudo apt --yes install lsb-core

cd /tmp
mkdir google-earth && cd google-earth
wget https://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb
sudo dpkg -i google-earth-stable*.deb

参考

http://blog.pztop.com/2016/04/28/在Ubuntu上安装Google-Earth-16-04/

相关内容