View Single Post
  #1   Spotlight this post!  
Unread 19-01-2011, 20:17
dysxqer dysxqer is offline
Web and Software
AKA: Zack Hickman
FRC #0166 (Chop Shop 166)
Team Role: Webmaster
 
Join Date: Jan 2010
Rookie Year: 2009
Location: new hampshire
Posts: 9
dysxqer is an unknown quantity at this point
Experience with MatPlotLib and py2exe

Hello,

Team 166 has finalized a .csv parser made in python that graphs sets of data obtained from running robot code. However, in trying to convert this file to an executable to release to the public, we've had numerous problems using py2exe with matplotlib and trying to configure it to create a working exe. Currently, we are unable to include matplotlib in the final exe, even though it is included and is usable in the python script.

I've already taken a look at the matplotlib page on py2exe but the info there hasn't given us much luck. We were hoping that someone with experience with matplotlib and py2exe can help us with the configurations.

Our setup.py:

Code:
from distutils.core import setup
import py2exe
import matplotlib
    
setup(
data_files=matplotlib.get_py2exe_datafiles(),
console=['csvparse.py'],
options={'py2exe': {
}}

)
Reply With Quote