我已经用这个脚本编译了我的应用程序,以避免在 libmzq 和 MSVCP90 dll 上编译错误:
from distutils.core import setup
import py2exe
setup(console=[{"script": "Int_assortimenti.py"}],
options = {
"py2exe": {
"dll_excludes": ["libzmq.dll", "MSVCP90.dll"]
}
})
我获得了我的可执行文件,但是当我运行它时,结果是:
我怎么解决这个问题?考虑到我的应用程序 matplotlib 没有被使用。
提前非常感谢:形成我对于解决这个问题至关重要!
米