我有一个 wxPython 应用程序,我正在尝试使用 py2exe 将它制作成一个 exe,但我遇到了一些麻烦。我MSVCP90.dll
与脚本位于同一目录中,py2exe 完成后,它在启动 exe 时显示“程序无法启动,因为 MSVCR90.dll 丢失......”。为什么找不到呢?
虽然它是 py2exe'ing,但我还得到以下信息:
The following modules appear to be missing
['Carbon', 'Carbon.Files']
...
Your executable(s) also depend on these dlls which are not included,
you may or may not need to distribute them.
...
OLEAUT32.dll - C:\PATH
USER32.dll - C:\PATH
...
MSVCP90.dll - C:\PathToTheDllInMyScriptsFolder
我在这里缺少什么吗?将 .py wxPython 应用程序转换为 .exe wxPython 应用程序有多难?