PyCharm + python + Pyside2/Pyside6 + QT Designer + uic + pyinstaller图形界面开发

PyCharm + python + Pyside6/Pyside2 + QT Designer + uic + pyinstaller

PyCharm :开发IDE
python :开发语言
Pyside6/Pyside2 :QT图形界面库
QT Designer:图形界面设计工具(UI设计)
uic:把 QT Designer 设计生成的 .ui 文件 转化为 .py 文件
pyinstaller:打包python文件成exe可执行程序


文章目录

  • PyCharm + python + Pyside6/Pyside2 + QT Designer + uic + pyinstaller
  • 环境搭建
    • 安装PyCharm
      • 1.怎么设置中文界面
      • 2.ModuleNotFoundError: No module named 'cv2'
    • 64位环境下安装32位python
      • 1. 查询当前 "platform" 运行环境
      • 2. 修改设置32位平台,方便安装32位python
      • 3. 安装32位python运行环境
      • 4. 查询当前运行环境是否安装成功
    • 配置python运行环境
    • 安装Pyside6/Pyside2
    • 配置External Tools
      • **1. Pyside6-Designer配置**
      • **2. Pyside6-uic配置**
      • **3. Lib\site-packages\PySide6\bin\uic: 进程启动失败:系统找不到指定的文件。**
  • 示例
  • 发布程序
  • 总结


环境搭建

安装PyCharm

1.怎么设置中文界面

file->Settings->Plugins
PyCharm + python + Pyside2/Pyside6 + QT Designer + uic + pyinstaller图形界面开发_第1张图片

2.ModuleNotFoundError: No module named ‘cv2’

需要import cv2,由于之前电脑没有安装过opencv包,因此出现报错.
加镜像源高速下载

 1. pip install opencv-python  -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

查看下载路径
pip show 模块名称

 1. pip show opencv-python

64位环境下安装32位python

1. 查询当前 “platform” 运行环境

 Anaconda Prompt (Anaconda3)->conda info

PyCharm + python + Pyside2/Pyside6 + QT Designer + uic + pyinstaller图形界面开发_第2张图片
platform : win-64表示当前平台是64位

2. 修改设置32位平台,方便安装32位python

set CONDA_FORCE_32BIT=1是切换到32(这样安装的是32位python版本)
set CONDA_FORCE_32BIT= 是切换到64(这样安装的是64位python版本)

PyCharm + python + Pyside2/Pyside6 + QT Designer + uic + pyinstaller图形界面开发_第3张图片

3. 安装32位python运行环境

conda create -n python32 python=<

你可能感兴趣的:(python,windows)