我正在尝试使用以下命令在python 3.4上安装cx_Freeze:
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org --trusted-host pypi.python.org cx_freeze
但是,我遇到了错误
creating build\temp.win-amd64-3.4\Release\source
C:\VS10\VC\Bin\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG - IC:\Python34\include -IC:\Python34\include /Tcsource/util.c /Fobuild\temp.win-amd64-3.4\Release\source/util.obj
util.c
C:\VS10\VC\Bin\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\Python34\libs /LIBPATH:C:\Python34\PCbuild\amd64 imagehlp.lib Shlwapi.lib /EXPORT:PyInit_util build\temp.win-amd64-3.4\Release\source/util.obj /OUT:build\lib.win-amd64-3.4\cx_Freeze\util.pyd /IMPLIB:build\temp.win-amd64-3.4\Release\source\util.lib /MANIFESTFILE:build\temp.win-amd64-3.4\Release\source\util.pyd.manifest
LINK : fatal error LNK1181: cannot open input file 'imagehlp.lib'
error: command 'C:\VS10\VC\Bin\link.exe' failed with exit status 1181
有什么想法可以解决这个问题吗?
答案 0 :(得分:0)
cx_Freeze
的当前/默认版本是5.1.1,并且仅支持Python 2.7、3.5和3.6。
支持Python 3.4的cx_Freeze
的最新版本是5.0.2。请参见cx_Freeze
release notes和cx-freeze
tag info。所以您可能应该尝试
pip install [...] cx_Freeze==5.0.2
其中[...]
代表安装命令的其他选项。
我不确定版本的这种不兼容性是否是您所报告的特定错误的根本原因,但在项目中的某些时候会引起问题。