Differences between revisions 3 and 16 (spanning 13 versions)
Revision 3 as of 2004-05-19 18:23:14
Size: 2085
Editor: 206
Comment:
Revision 16 as of 2005-10-28 20:29:26
Size: 1844
Editor: ppp45-adsl-27
Comment: procedure does not finish happily here
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
matplotlib [http://matplotlib.sf.net] is a module to produce nice-looking plots in Python using a wide variety of back-end packages, at least one of which is likely to be available for your system. This ability to do things in a generic fashion makes this a simple system to use, but it gets complicated if you wish to distribute an executable instead of scripts. This page describes what I had to do to make matplotlib work with py2exe.
= Changes required to matplotlib =
I had to patch matplotlib's __init__.py file in the get_data_path() routine. Specifically, right before raising the error at the end, I added the following code
{{{
#!python
      # CODE ADDED TO SUPPORT PY2EXE
      if sys.frozen:
         path = os.path.join(os.path.split(sys.path[0])[0], 'matplotlib')
         return path
}}}
[http://matplotlib.sf.net MatPlotLib] is a module to produce nice-looking plots in Python using a wide variety of back-end packages, at least one of which is likely to be available for your system. This ability to do things in a generic fashion makes this a simple system to use, but it gets complicated if you wish to distribute an executable instead of scripts. This page describes what I had to do to make matplotlib work with py2exe.
Line 13: Line 5:
We also need to make sure we get the matplotlib subdirectory created in the distribution. This is where we'll include all of the stuff matplotlib includes in the pythonXX\share\matplotlib directory. This is also where the __init__ file has been updated to look for this information.
Line 21: Line 12:
# We also need to include matplotlib.numerix.random_array
Line 22: Line 14:
    'py2exe': { 'excludes': ['_gtkagg', '_tkagg'],     'py2exe': { 'includes': 'matplotlib.numerix.random_array',
               
'excludes': ['_gtkagg', '_tkagg'],
Line 24: Line 17:
                                 'libgobject-2.0-0.dll']}                                  'libgobject-2.0-0.dll']
              
}
       }
Line 28: Line 23:
# Do the same if you need to
Line 29: Line 25:
    data_files = [('matplotlib', glob.glob(r'c:\python23\share\matplotlib\*')),
                  ('matplotlib', [r'c:\python23\share\matplotlib\.matplotlibrc'])],
    data_files = [(r'matplotlibdata', glob.glob(r'c:\python24\share\matplotlib\*')),
                  (r'matplotlibdata', [r'c:\python24\share\matplotlib\.matplotlibrc'])],
Line 33: Line 29:
    console = ['demo.py',]     console = ['demo.py']
Line 35: Line 31:
}}}
Line 36: Line 33:
== WARNING ==
if you end up with
{{{
  File "pytz\__init__.pyo", line 53, in timezone
KeyError: 'UTC'
Line 37: Line 39:
in your log file then see http://sourceforge.net/tracker/index.php?func=detail&aid=1036920&group_id=79122&atid=555590

Introduction

[http://matplotlib.sf.net MatPlotLib] is a module to produce nice-looking plots in Python using a wide variety of back-end packages, at least one of which is likely to be available for your system. This ability to do things in a generic fashion makes this a simple system to use, but it gets complicated if you wish to distribute an executable instead of scripts. This page describes what I had to do to make matplotlib work with py2exe.

Special content for setup.py to use matplotlib

   1 # We need to import the glob module to search for all files.
   2 import glob
   3 
   4 # We need to exclude matplotlib backends not being used by this executable.  You may find
   5 # that you need different excludes to create a working executable with your chosen backend.
   6 # We also need to include matplotlib.numerix.random_array
   7 opts = {
   8     'py2exe': { 'includes': 'matplotlib.numerix.random_array',
   9                 'excludes': ['_gtkagg', '_tkagg'],
  10                 'dll_excludes': ['libgdk-win32-2.0-0.dll',
  11                                  'libgobject-2.0-0.dll']
  12               }
  13        }
  14 
  15 # Additional data files are required by matplotlib.  Note that the glob.glob routine
  16 # doesn't seem to pick up the .matplotlib resource file, so I copy that separately.
  17 # Do the same if you need to
  18 setup(
  19     data_files = [(r'matplotlibdata', glob.glob(r'c:\python24\share\matplotlib\*')),
  20                   (r'matplotlibdata', [r'c:\python24\share\matplotlib\.matplotlibrc'])],
  21     name = 'demo',
  22     description = 'MatPlotLib Demo Program',
  23     console = ['demo.py']
  24     )

WARNING

if you end up with

  File "pytz\__init__.pyo", line 53, in timezone
KeyError: 'UTC'

in your log file then see http://sourceforge.net/tracker/index.php?func=detail&aid=1036920&group_id=79122&atid=555590

MatPlotLib (last edited 2018-10-31 15:57:34 by JimmyRetzlaff)