问题描述
今天在windows7上用pyinstaller打包应用程序的时候,出现下面错误
ERROR: Assembly amd64_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_none not found
问题原因
查了一下,有说是没有安装vc2008 x64和vc2008 x64 sp1导致的,或者安装的不是64位包导致的,但是检查了我的环境这两个包确实装的都是64位的。没办法,只能自己继续排错。
所以又准备了一个新环境,把各种要安装的包组合装了一下,最后发现是我原来系统上安装的pyinstaller版本太低(是2.1版本)。
解决办法
卸载老的低版本的pyinstller,安装最新的pyinstller。
pip uninstall pyinstaller
pip install pyinstaller
参考
Microsoft Visual C++ 2008 Redistributable Package (x64)
http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=15336
Microsoft Visual C++ 2008 SP1 Redistributable Package (x64)
http://www.microsoft.com/zh-cn/download/details.aspx?id=2092