web-dev-qa-db-ja.com

Ubuntu 17.04にGoogle Earthをインストールするときにエラーが発生しました

Google Earthをコンピューターにインストールする必要があります。GoogleEarthの64ビット.debパッケージをダウンロードし、次のコマンドSudo dpkg -i google-earth-pro-stable_current_AMD64.debを使用してインストールしようとしましたが、次のエラーが表示されます。

mala@mala-Aspire-F5-573G:/tmp/mozilla_mala0$ Sudo dpkg -i google-earth-pro-stable_current_AMD64.deb 
(Reading database ... 302542 files and directories currently installed.)
Preparing to unpack google-earth-pro-stable_current_AMD64.deb ...
Unpacking google-earth-pro-stable (7.3.0.3830-r0) over (7.3.0.3830-r0) ...
dpkg: dependency problems prevent configuration of google-earth-pro-stable:
 google-earth-pro-stable depends on lsb-core (>= 3.2); however:
  Package lsb-core is not installed.

dpkg: error processing package google-earth-pro-stable (--install):
 dependency problems - leaving unconfigured
Processing triggers for bamfdaemon (0.5.3+17.04.20170406-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for gnome-menus (3.13.3-6ubuntu5) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu2) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for man-db (2.7.6.1-2) ...
Errors were encountered while processing:
 google-earth-pro-stable
2
Mala Pokhrel

このエラーは、依存関係の問題を示しています。

google-earth-pro-stable depends on lsb-core (>= 3.2); however:
Package lsb-core is not installed.

Google Earthにはlsb-coreパッケージが必要ですが、システムにインストールされていません。
このパッケージはUbuntu 17.04リポジトリにあるため、Sudo apt-get install lsb-coreを実行してlsb-coreをインストールするだけです。その後、Sudo dpkg -i google-earth-pro-stable_current_AMD64.debを再度実行してインストールできます。

5
M. Bromilow