Python 3.5 + PyQt5 to standalone exe

2019-02-26 10:05发布

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

Error I get from nuitka exe file: error_0ne

Error I get from pyinstaller exe file:

Er2

Dll's that pyinstaller needs: dlls

1条回答
Deceive 欺骗
2楼-- · 2019-02-26 10:27

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

Then add path to PyQt5 dll's. I used this:

pyinstaller -y --clean --paths C:\TEMP\env\Lib\site-packages\PyQt5\Qt\bin\
查看更多
登录 后发表回答