I've compiled my app with this script in order to avoid compiling error on libmzq and MSVCP90 dlls:
from distutils.core import setup
import py2exe
setup(console=[{"script": "Int_assortimenti.py"}],
options = {
"py2exe": {
"dll_excludes": ["libzmq.dll", "MSVCP90.dll"]
}
})
I obtain my executable but when I run it the result is:

How can I solve this problem? Consider that n my application matplotlib is not used.
Thanks a lot in advance: form me is crucial to solve this problem!
M