为什么QTCreator中缺少Ubuntu.Components 0.1?
首先,我需要使用QML和QT Creator创建一个“ hello world”应用程序,如此处所述 http://developer.ubuntu.com/get-started/gomobile/ 其次,当我尝试安装QML平台和依赖项时,我无法运行第2步(“安装Ubuntu QML工具包预览”),因为我有一个基于ubuntu 12.04的发行版(后备箱),但我可以通过以下方法解决这篇文章的说明: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: …