我试图在cmd中使用pyinstaller,但是我收到了错误:
C:\Users\username>pyinstaller
'pyinstaller' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\username>
当我在python中的脚本文件夹中使用此命令时,它可以工作:
C:\Users\username\AppData\Local\Programs\Python\Python36-32\Scripts>py
虚拟环境中使用/ UPX生成的pyInstaller可执行抛出错误
DLL load failed: The parameter is incorrect. while parameter is correct...
我在没有pyInstaller UPX的情况下使python可执行,它是关于250MB的&它的工作很好。
为了缩小规模,我使用pyInstaller UPX创建了另一个pyInstaller(包含相同的代码),它给了我一个错误引用。
代码包含像Pandas,Numpy,Openpyxl这样的库
错误显示在我定义Pandas库的第8行
堆垛工,
我用Docker来装我的应用程序。在下面的中,我试图使用打包它。
FROM alpine:3.8 AS compressor
# Version of upx to be used(without the 'v' prefix)
# For all releases, see https://github.com/upx/upx/releases
ARG UPX_VERSION=3.94
# Fetch upx, decompress it, make it executable.
ADD https://github.com/upx/upx/releases/d
Python脚本(v3.6)在PyCharm中运行良好,但是当通过Auto Py转换为Exe时,在CMD中会出现以下错误。
Traceback (most recent call last):
File "export_members.py", line 2, in <module>
ModuleNotFoundError: No module named 'pymysql'
[13936] Failed to execute script export_members
如果使用pyinstaller生成可执行文件,也会给出类似的错误,有没有方法
我已经通过Python创建了一个运行良好的脚本,然后我创建了一个可执行文件,并获得了以下错误:
File "site-packages\pandas\compat\numpy\__init__.py", line 11, in <module>
AttributeError: 'module' object has no attribute '__version__'
我发现的所有其他问题都与通过Python运行的脚本有关。
这似乎是一个import问题,但我不知道如何在可执行文件中解决它。
这是我的.spec文件:
# -*- mo
我尝试将我的notepad++集成到之前的应用程序中,并成功安装了mingw应用程序。我从这个网站得到了帮助:
我从该网站获得的代码如下:
// The script code, C source code compiling with GNU CC (GCC) in notepad++ (by "NppExec" plug-in) and compressing with UPX...
//
// Enable? "//" signs remove in code line.
// Sample: C:\Program
我有一个小python脚本,其中只有一个依赖项。
from pandas import DataFrame as pdf
我希望创建一个只需要用户在其.exe中安装python的.exe。帮助我运行了创建,但是生成dist文件夹是空的。有人知道为什么会这样吗
我做错什么了?
规范:用Windows OS编写的,Python 3.6.5 - Anaconda
编辑:,这是我正在使用的示例。
from pandas import DataFrame as pdf
if "__main__":
df = pdf([['This', 'is'],