Re: [Matplotlib-users] cx_freeze-ing

2015-05-30 Thread cph
I fixed this problem by including the following line in my source code file: from matplotlib.backends import backend_tkagg -- View this message in context: http://matplotlib.1069221.n5.nabble.com/cx-freeze-ing-tp41780p45639.html Sent from the matplotlib - users mailing list archive at Nabbl

Re: [Matplotlib-users] cx_freeze-ing

2013-08-15 Thread phil_thy
Hi gsal, Would you mind sharing a simple example how did you manage to that? I am trying to freeze a simple code with matplotlib for the past two days with no success, every time I get the "No module backend_tkagg" message... ;( Many thanks for help in advance! gsal wrote > oh, I got it...neede

Re: [Matplotlib-users] cx_freeze-ing

2013-08-10 Thread gsal
oh, I got it...needed to include backend package in the cf_freeze setup script. thanks, -- View this message in context: http://matplotlib.1069221.n5.nabble.com/cx-freeze-ing-tp41780p41782.html Sent from the matplotlib - users mailing list archive at Nabble.com. --

[Matplotlib-users] cx_freeze-ing

2013-08-09 Thread gsal
So, I have a working program that starts like this: import os import sys import numpy as np from pylab import * from matplotlib.widgets import Slider from matplotlib.patches import FancyBboxPatch, Rectangle but when I cx_freeze it, it complains about some missing backend_ stuff, so, I do: import