无法在Ubuntu 16.04 64bit上安装Google Earth


10

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

须藤apt-get install lsb-core

64位用户:如果安装32位软件包,则应改用它

sudo apt-get install 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上不再起作用。谁能帮忙?


嗨,您好。您是否成功安装了它?
极乐世界(Elysium)

Answers:


5

您可以尝试在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 Ugly中,我们可以使用以下命令添加msttcorefonts:

sudo apt-get install msttcorefonts

在此处输入图片说明


2
一如既往的错误。几秒钟后,Google Earth崩溃并显示错误消息:在处理崩溃时发生了另一次崩溃!
乌尔里希

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/Install-Google-Earth-on-Ubuntu-16-04/

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.