web-dev-qa-db-ja.com

QtLocationとQtPositioningがインストールされていません

地図を表示するKDEウィジェットを開発しようとしています。現時点では、エラーが発生したためウィジェットをロードできませんmodule "QtLocation" is not installedおよびmodule "QtPositioning" is not installed

Ubuntu 18.04を実行しています。見て このページで 、私はそれを確認しましたlibqt5positioning5およびlibqt5location5がインストールされています。ウィジェットはまだ上記のエラーでロードされません。

redditについて QMLバインディングもインストールする必要があると誰かから言われました。必要なパッケージ名は何ですか?

2
Davide_sd

開発、つまりプログラミングについて話しているときに、ヘッダー付きの開発パッケージをインストールする必要があります。

  • qtlocation5-dev for/ usr/include/x86_64-linux-gnu/qt5/QtLocation/QtLocation;
  • qtpositioning5-dev for/ usr/include/x86_64-linux-gnu/qt5/QtPositioning/QtPositioning.

それらをQMLバインディングと一緒にインストールします

Sudo apt install qtlocation5-dev qtpositioning5-dev 
Sudo apt install qml-module-qtlocation qml-module-qtpositioning

次回は packages.ubuntu.comのファイル検索 を使用できます。

2
N0rbert