luozhangyou 发表于 2020-3-15 22:58:20

py2exe error: [Errno 2] No such file or directory: 'MSVCP90.dll'

使用 python setup.py py2exe 打包时出现 py2exe error: No such file or directory: 'MSVCP90.dll'
解决方法
#setup.py
from distutils.core import setup
import py2exe
setup(windows=["wxDemo.py"],options = { "py2exe":{"dll_excludes":["MSVCP90.dll"]}})


页: [1]
查看完整版本: py2exe error: [Errno 2] No such file or directory: 'MSVCP90.dll'