最近我买了一个带有 8Gb RAM 的全新 Raspberry Pi 4B 并在那里安装了 Ubuntu Desktop 21.04。
我的目标是在控制 GPIO 引脚(一些硬件设备)的触摸屏上创建一个 GUI。
由于控制 GPIO 是由 Python 完成的,因此我也想使用编写 GUI。我看了几个教程并决定使用 PySide6 + Qt Quick。这种程序在我的个人笔记本电脑上运行良好,但是当尝试在 Raspberry 上下载所需的依赖项时,例如:
python3.9 -m pip install PySide6
我收到以下错误:
ERROR: Could not find a version that satisfies the requirement PySide6 (from versions: none)
ERROR: No matching distribution found for PySide6
我想这个问题可能是由交叉编译引起的。
您知道是否有机会在 Raspberry Pi 4B 上运行 PySide6 和 QtQuick?