使用 python setup.py py2exe 打包时出现 py2exe error: [Errno 2] 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"]}})
 

相关文章:

  • 2021-09-13
  • 2021-08-21
  • 2022-02-14
  • 2021-07-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
猜你喜欢
  • 2022-12-23
  • 2021-11-20
  • 2021-07-04
  • 2021-03-29
  • 2022-12-23
  • 2021-12-24
相关资源
相似解决方案