From: John H. <jdh...@ac...> - 2005-02-20 14:30:26
|
>>>>> "Alex" == Alex Rada <ale...@gm...> writes: Alex> HI, and now I can load pylab but have problems to see Alex> images, infact if I try: >>>> from pylab import * plot([1,2,3]) There are a number of subtleties in trying to get matplotlib working from the python shell, as described at http://matplotlib.sf.net/interactive.html . Try running a script from pylab import plot, show plot([1,2,3]) show() from the bash shell with > python myscript.py --verbose-helpful Do you get a plot? If not, please post the output generated by the script. JDH |