无法找到 qmlviewer 的移动应用程序开发问题?

无法找到 qmlviewer 的移动应用程序开发问题?

我正在尝试遵循移动应用程序开发教程找到这里。当我尝试在 QT Creator 中运行货币转换器时,出现此错误:

Starting external tool '/usr/bin/qmlviewer' ''
qmlviewer: could not exec '/usr/lib/x86_64-linux-gnu/qt5/bin/qmlviewer': No such file or directory

我不知道该如何修复这个问题?我可以从命令行运行该程序,并且它运行良好,但它在 Qt Creator 中不起作用。有其他人遇到过这些问题吗?有什么关于如何修复它的建议吗?

答案1

您必须安装 QML 工具包。运行:

sudo add-apt-repository ppa:canonical-qt5-edgers/qt5-proper
sudo add-apt-repository ppa:ubuntu-sdk-team/ppa 
sudo apt-get update 
sudo apt-get install ubuntu-sdk notepad-qml

答案2

转到 Ubuntu 软件中心并找到“Qt4 QML 查看器”。安装它。现在就可以工作了。

答案3

要查看QtQuick 2.0你必须使用qmlscene

相关内容