Python 3.5 + PyQt5 to standalone exe(Python 3.5 + PyQt5 到独立 exe)
问题描述
我是编码新手,我需要将我的 py 文件转换为 exe.我尝试了 py2exe,但它不适用于 python 3.5.然后我尝试了pyinstaller并且它工作了,但是当我将PyQt5添加到程序中时,pyinstaller也失败了.我尝试了nuitka,它构建了exe,但是当我单击exe文件时,它会显示一个控制台几秒钟并关闭.我需要一个在激活后显示 gui 的 exe.以下是我在程序中使用的模块:
I'm new to coding and I need to transform my py file to an exe. I tried py2exe and it didn't work with python 3.5. Then I tried pyinstaller and it worked, but when I added PyQt5 to the program, pyinstaller also failed. I tried nuitka, and it builds the exe, but when I click on the exe file it shows a console for a few seconds and closes. I need an exe which shows a gui after being activated. Here are the modules that I used in the program:
import P4
import time
from datetime import datetime,date
import traceback
import os
import sys
import threading
from PyQt5 import QtCore
from PyQt5 import QtGui
from PyQt5.QtWidgets import *
from PyQt5.QtCore import QCoreApplication, QTimer
我从 nuitka exe 文件中得到的错误:
Error I get from nuitka exe file:
我从 pyinstaller exe 文件中得到的错误:
Error I get from pyinstaller exe file:
pyinstaller 需要的 Dll:dll
Dll's that pyinstaller needs: dlls
推荐答案
我已经弄清楚如何使用 Python 3.5 和 pyinstaller 制作一个 exe.你需要安装这个:
I've figured out how to make an exe with Python 3.5 and pyinstaller. You need to install this:
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip --upgrade
然后添加 PyQt5 dll 的路径.我用这个:
Then add path to PyQt5 dll's. I used this:
pyinstaller -y --clean --paths C:TEMPenvLibsite-packagesPyQt5Qtin
这篇关于Python 3.5 + PyQt5 到独立 exe的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python 3.5 + PyQt5 到独立 exe
基础教程推荐
- 用于分类数据的跳跃记号标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01