Hallo,
I have an app which uses matplotlib. I compile my app under windows
with pyinstaller 1.4 and (as in version 1.3) I have to copy mpl-data
folder into the dist folder to get my app working.
Here my spec file:
{{{
a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'),
os.path.join(HOMEPATH,'support\\useUnicode.py'), 'src\\main.py'],
pathex=['.'])
pyz = PYZ(a.pure)
exe = EXE( pyz,
a.scripts,
a.binaries,
name='myApp.exe',
debug=False,
strip=False,
upx=True,
exclude_binaries=True,
console=False ,
icon='res\\myApp.ico')
dist = COLLECT(exe, a.binaries, name="dist")
}}}
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.