20240312
本次尝试使用cffi想要实现将嵌入式一段代码图形化,python编译器运行的时候还很正常,打包后发现总报错,内容如下:
fatal error C1083: 无法打开包括文件: “Python.h”: No such file
or directory
Traceback (most recent call last):File "setuptools\_distutils\_msvccompiler.py", line 419, in compileFile "setuptools\_distutils\_msvccompiler.py", line 517, in spawnFile "setuptools\_distutils\ccompiler.py", line 1041, in spawnFile "setuptools\_distutils\spawn.py", line 70, in spawn
distutils.errors.DistutilsExecError: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2During handling of the above exception, another exception occurred:Traceback (most recent call last):File "cffi\ffiplatform.py", line 51, in _buildFile "setuptools\dist.py", line 963, in run_commandFile "setuptools\_distutils\dist.py", line 988, in run_commandFile "setuptools\_distutils\command\build_ext.py", line 345, in runFile "setuptools\_distutils\command\build_ext.py", line 467, in build_extensionsFile "setuptools\_distutils\command\build_ext.py", line 493, in _build_extensions_serialFile "setuptools\_distutils\command\build_ext.py", line 548, in build_extensionFile "setuptools\_distutils\_msvccompiler.py", line 421, in compile
distutils.errors.CompileError: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2During handling of the above exception, another exception occurred:Traceback (most recent call last):File "changetopy.py", line 26, in <module>File "cffi\api.py", line 468, in verifyFile "cffi\verifier.py", line 105, in load_libraryFile "cffi\verifier.py", line 202, in _compile_moduleFile "cffi\ffiplatform.py", line 22, in compileFile "cffi\ffiplatform.py", line 58, in _build
cffi.VerificationError: CompileError: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
不知道原因是什么,想着代码可能复杂了,又重新改写了代码,依旧不管用,还是报如上的类似错误,重装了VC和pyinstaller以及cffi都没什么效果,感觉像是打包的时候没有办法把gcc和Vc的部分同步打包,造成打包后运行起来非常混乱,识别不到C运行环境等相关部分了,暂无对策。
20240313
1.为了排除错误,尝试将打包文件生成文件夹的形式而不是单独的一个运行包,再将pyconfig.h所在文件夹目录添加到环境变量中,此方式无效。
2.继续尝试将pyconfig.h文件直接复制到运行文件夹,发现继续报错找不到其他.h文件,干脆将整个python安装包下的include文件夹复制过去(缺少的pyconfig.h文件和其他的.h文件都是在include文件夹下的)
3.进行到这一步,开始更换报错内容,缺少python3.lib,搜索发现改文件处于python安装后的libs文件夹下,然后将缺少的文件直接复制过去,继续报错,缺少python38.lib(这个报错应该和我使用的python版本有关系,如果python版本变化,则可能报其他版本的问题),同样为了减少麻烦,直接将整个文件夹复制过去,最后正常运行。
分析原因,之前得到的结论是错的,和C运行环境没关系,是pyinstaller在打包过程中,不会完全打包python的整个运行环境,最后导致内容缺失,才会一直报错。