なぜUbuntu.Components 0.1がQTCreatorにないのですか?
まず、ここで説明するように、QML&QT Creatorを使用して「hello world」アプリを作成する必要があります http://developer.ubuntu.com/get-started/gomobile/ 第二に、QMLプラットフォームと依存関係をインストールしようとしたときに、ubuntu 12.04に基づいたディストリビューション(バックボックス)があるため、ステップ2(「Ubuntu QMLツールキットプレビューのインストール」)を実行できませんでしたが、次のように解決しますこの投稿の手順:https : //askubuntu.com/questions/235440/how-do-i-install-the-qml-toolkit-on-12-04 第三に、QTCreatorを開いてCurrencyConverter(helloWorldアプリ)を実行しようとすると、プログラムは次のパッケージを見つけることができません。 import Ubuntu.Components 0.1 アプリを実行するにはどうすればよいですか? 前もって感謝します。 import QtQuick 2.0 import Ubuntu.Components 0.1 Rectangle { id: root width: units.gu(60) height: units.gu(80) color: "lightgray" property real margins: units.gu(2) property real buttonWidth: units.gu(9) Label { id: title ItemStyle.class: "title" text: i18n.tr("Currency Converter") height: contentHeight …