john.ba...@worstead.co.uk writes:

> I recently changed some of the colours, using tuples of RGB values instead
> of the standard colors and now the scripts will run from the command line,
> but not as scheduled cron jobs and I get the following error:
>
> Unable to access the X Display, is $DISPLAY set properly?

This has probably nothing to do with the way you specify colors. For
some reason matplotlib is using an interactive backend. Make sure that
your script starts with

import matplotlib
matplotlib.use('Agg')

or that you specify the Agg backend in your matplotlibrc file.

-- 
Jouni K. Seppänen
http://www.iki.fi/jks


------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to