红联Linux门户
Linux帮助

Ubuntu 14.04安装QtSerialPort

发布时间:2015-10-08 11:02:05来源:linux网站作者:kangear

想写一个Linux下的串口调试助手,搜索了一下官方已经封装了Serial类,比如Qt中的串口编程之一讲解了如何进行如何从源码编译安装QtSerialPort模块。不过文章是13年的,想必目前已经可以通过apt-get install方式来安装。搜索了一下,发现使用以下命令可以安装QtSerialPort模块。

sudo apt-get install libqt5serialport5-dev libudev-dev


模块有没有安装成功在pro工程文件中添加QT += serialport如果没有报错就说明模块安装成功,可以进行一下一步开发了。

当前安装的是5.2.1版本,目前最好的版本是5.5版本。但是为了方便开发选择默认安装的5.2.1版本。


官方的其它文章有:
1.Qt Serial Port Examples:http://doc.qt.io/qt-5/qtserialport-examples.html
2.Qt Serial Port:http://doc.qt.io/qt-5/qtserialport-index.html


ubuntu 15.10 qt 5命令行相关注意事项:http://www.linuxdiyf.com/linux/14399.html

Qt5.5和PyQt5.5在UbuntuKylin15.04的快速安装脚本:http://www.linuxdiyf.com/linux/13046.html

linux下Qt环境的搭建:http://www.linuxdiyf.com/linux/13770.html

Ubuntu15下Qt+libusb开发:http://www.linuxdiyf.com/linux/12686.html

ubuntu15.04 qt5.4.2连接mysql:http://www.linuxdiyf.com/linux/13054.html