1、环境搭建
(1)首先安装vscode树莓派版本,网上有大神自己编译的可用版本,直接微软官网下载的不支持
(2)QT环境,直接安装的QTdesigner暂时未探索其python编程方式,所以我直接使用pyside
pyside的安装:python2.7在终端输入sudo apt-get install python-pyside
python3.5在终端输入sudo apt-get install python3-pyside
2、代码编写调试
(1)基础界面示例代码:
import sys
from PySide.QtCore import *
from PySide.QtGui import *
qt_app=QApplication(sys.argv)
widget=QWidget()
widget.setWindowTitle("My first Window")
widget.show()
qt_app.exec_()
(2)vscode按F5调试运行,vscode中python一些插件需要自己手动加载安装
如果出现报错,找不到对应的pyside,可能是vscode默认使用的python版本不对。我们需要在vs的首选项中手动配置。
【文件】->【首选项】->【设置】,
settings.json文件中搜索到 //Path to Python,you can use a custom version of Python ... ,
下面的 "python,oythonPath":"python" 复制到用户设置,
设置为自己安装的路径:例如我的 python3 是 "python.pythonPath":"/usr/bin/python3",
python2 就是 "python.pythonPath":"/usr/bin/python"
在运行对应的版本就不会报错了