from distutils.core import setup
import py2exe,sys,os
sys.argv.append('py2exe')
try:
setup(
options = {'py2exe': {'bundle_files': 1}},
console=['my_console_script.py'],
zipfile = None,
)
except Exception, e:
print e
输出:
> running py2exe
> *** searching for required modules ***
> *** parsing results ***
> *** finding dlls needed *** Traceback (most recent call last): File
> "C:\scripts\download_ghost_recon\setup.py",
> line 26, in <module>
> zipfile = None, File "C:\Python26\lib\distutils\core.py",
> line 162, in setup
> raise SystemExit, error SystemExit: error: MSVCR80.dll: No
> such file or directory
我在Windows 7中使用python 2.6
那么如何让这个MSVCR80.dll错误消失,并编译我的脚本?
在其他脚本上,我可以运行相同的setup.py而不会收到此错误。
这让我觉得在这个脚本中,py2exe需要这个MSVCR80.dll
我也试过这个代码,我在这里找到了: http://www.py2exe.org/index.cgi/OverridingCriteraForIncludingDlls 但它也没有用。
from distutils.core import setup
import py2exe,sys,os
origIsSystemDLL = py2exe.build_exe.isSystemDLL
def isSystemDLL(pathname):
if os.path.basename(pathname).lower() in ("msvcp71.dll", "dwmapi.dll"):
return 0
return origIsSystemDLL(pathname)
py2exe.build_exe.isSystemDLL = isSystemDLL
sys.argv.append('py2exe')
try:
setup(
options = {'py2exe': {'bundle_files': 1}},
console=['my_console_script.py'],
zipfile = None,
)
except Exception, e:
print e
*修改 我还在我的计算机上搜索了这个文件,它位于以下位置:
C:\Windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb8f8
C:\Windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4053_none_d08d7da0442a985d
C:\Windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d08a205e442db5b5
答案 0 :(得分:2)
附加到setup
的电话:
{ 'py2exe': { ...,
'dll_excludes': [ 'msvcr80.dll', 'msvcp80.dll',
'msvcr80d.dll', 'msvcp80d.dll',
'powrprof.dll', 'mswsock.dll' ] }, ...
如果要在应用程序中包含可视化C运行时DLL,请查看Microsoft的可分发运行时下载。您可能正在使用在此应用程序中导入的库或模块,但不是您使用的其他库。检查是否可以使用Visual Studio 2008重新编译它们可能是个好主意,因为这是用于创建标准Python 2.6 Windows版本的内容。