ไม่สามารถติดตั้ง Google Earth บน Ubuntu 16.04 64 บิต


10

ตรวจสอบให้แน่ใจว่ามีการติดตั้งแพ็คเกจ lsb-core! เปิดเทอร์มินัลจาก Applications -> Accessories -> Terminal (ในพาเนล) หรือจาก Dash (ในเดสก์ท็อป Unity) และพิมพ์ (หรือคัดลอกวาง) คำสั่งต่อไปนี้ลงในเทอร์มินัล:

sudo 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 libx116-6: i386

ทั้งหมดนี้แนะนำสำหรับการติดตั้ง Google Earth สำหรับ Ubuntu รุ่นเก่าไม่สามารถใช้กับ Ubuntu 16.04 ได้อีกต่อไป ใครช่วยได้บ้าง


สวัสดี. คุณสามารถติดตั้งได้โดยไม่มีปัญหาหรือไม่?
Elysium

คำตอบ:


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 น่าเกลียดเราสามารถเพิ่ม msttcorefonts โดยใช้คำสั่งต่อไปนี้:

sudo apt-get install msttcorefonts

ป้อนคำอธิบายรูปภาพที่นี่


2
ข้อผิดพลาดเช่นเคย Google Earth ล่มหลังจากไม่กี่วินาทีพร้อมกับข้อความแสดงข้อผิดพลาด: มีข้อผิดพลาดเกิดขึ้นอีกขณะจัดการข้อผิดพลาด!
Ulrich

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/

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.