no image...

HI, and now I can load pylab but have problems to see

    > 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