解压python-3.8.6-embed-amd64.zip
修改python38._pth文件,去掉 #import site 前的 #号,即放开 import site;若不放开将会pip无法正确安装。
get-pip.py 是一个 Python 安装包管理工具 pip 的安装脚本。
打开 get-pip.py网址 在浏览器中按下 Ctrl+S (或选择“文件”→“另存为”),将 get-pip.py 下载到本地电脑中。保存 get-pip.py 到python根目录。
在python根目录 运行以下命令来安装 pip:
python get-pip.py
安装 pip 后最好将其升级到最新版本。可以使用以下命令来升级 pip:
pip install --upgrade pip
添加python 目录
python\Scripts 目录到系统环境变量中
输入pip config list 验证一下换源是否成功
#阿里源
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
#中国科技大学
pip config set global.extra-index-url https://pypi.mirrors.ustc.edu.cn/simple/
#豆瓣(douban)
pip config set global.extra-index-url http://pypi.douban.com/simple/
#清华大学
pip config set global.extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple/
#中国科学技术大学
pip config set global.extra-index-url http://pypi.mirrors.ustc.edu.cn/simple/
安装PyQt5
pip install PyQt5
pip install PyQt5-tools
安装完成后在 %Python_path%\Lib\site-packages 可看到pyqt5相关文件夹
添加pyqt5-tools路径到环境变量
PyQt 5.15.x 之前的版本:
路径在%Python_path%\Lib\site-packages|pyqt5_tools\Qt\bin\desginer.exe
PyQt 5.15.x 以及之后的版本:
路径在 %Python_path%\Lib\site-packages\qt5_applications\Qt\bin\designer.exe