本文主要是介绍Ubuntu 16.04 Qt5安装qtcharts,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Qtcreator5.5安装qchart,首先下载qtcharts,然后进入该路径下,qmake一下。
$git clone https://github.com/qtproject/qtcharts.git
$cd qtcharts
$qmake
这时会出现问题是’qtConfig’ is nit a recongnized test function
这时输入:
$git checkout 5.7
出来:Brach 5.7 set up to track remote brach 5.7 from origin.
Switch to a new brach ‘5.7’
这时再输入
$ qmake
就没有问题了,然后就可以继续了,得等一会儿。
$make
$sudo make install
需要注意的是,安装qtcharts需要qt在5.4版本以上哟。
这篇关于Ubuntu 16.04 Qt5安装qtcharts的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!