PyQt5 开发环境搭建

系统环境:win7 64位:

下载安装python:
python-3.5.2
https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exe
#安装时注意要勾选“Add Python 3.5 to Path”

下载安装pyqt5:
PyQt5-5.6
https://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-5.6/PyQt5-5.6-gpl-Py3.5-Qt5.6.0-x64-2.exe/download

下载安装pywin32:
pywin32
http://jaist.dl.sourceforge.net/project/pywin32/pywin32/Build%20220/pywin32-220.win-amd64-py3.5.exe

下载安装pyinstaller:
方法一:
https://github.com/pyinstaller/pyinstaller/releases/download/v3.2.1/PyInstaller-3.2.1.zip
--> python seteup.py install
方法二:
cmd下直接安装:pip install pyinstaller

如果实用串口:
ImportError: No module named 'serial'
解决办法:pip3 install pyserial

下载安装JDK ,eclipse

Eclipse IDE for Java Developers
Version: Photon Release (4.8.0)
Build id: 20180619-1200
OS: Windows 7, v.6.1, x86_64 / win32
Java version: 1.8.0_181

eclipse 安装pydev插件:
eclipse Help=>>Install New Software=>Add
http://www.pydev.org/updates

猜你喜欢

转载自blog.csdn.net/u013420428/article/details/81805892