赞
踩
pipenv
,官网教程贴在这里pipenv-PyPi,建议先看懂,再进行树莓派的Python相关开发pipenv
,在创建环境时加上--site-packages
,就能启用系统已安装的Python库pipenv --python 3 --site-packages
sudo apt-get update
sudo apt install build-essential
sudo apt-get install clang clang-format
sudo apt-get install qt5-default
sudo apt-get install qtcreator
sudo apt-get install qtdeclarative5-dev
sudo nano /etc/xdg/qt5ct/qt5ct.conf
sudo apt install pyqt5*
# 上述命令包含了sudo apt install python3-pyqt5
Preparing metadata (pyproject.toml)
,无法下一步sudo apt install pyside2*
sudo apt install python3-pyside2*
pyside2-designer
无法安装,且pyside2-uic
不可用,需要在Windows上导出UI.py
,而且Windows也要使用PySide2的pyside2-uic
导出UI.py
,如果使用PyQt5的pyuic5
导出UI.py
,和PySide2会不兼容,命令如下pyside2-uic UI.ui > UI.py
pyside2-rcc
可用,且必须使用,因为Windows上导出的Resource_rc.py
文件和Linux的PySide2会不兼容,需要在Linux上用pyside2-rcc
重新导出Resource_rc.py
,命令如下pyside2-rcc Resource.rc -o Resource.py
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。