I managed to resolve it, by following Mike's hint thanks Mike.
It was simply to change the setup.py script to
import cx_Freeze
import sys
import matplotlib
base = None
if sys.platform == "win32":
base = "Win32GUI"
executables = [
I have no experience with cx_freeze, but the page on packaging
matplotlib with py2exe may be relevant. You do need to find a way to
convince cx_freeze to include the data files and then a way for
matplotlib to find them at run time.
Mike
Peter Bloomfield wrote:
> Hi,
>
> I want to build execu
Hi,
I want to build executables from python scripts that call matplotlib under
linux. To this end I have installed cxfreeze on my
SuSE 11.2 machine
I have tried two methods
1. Execute the command 'cxfreeze script.py'
and
2. Creating a setup.py script
import cx_Fr