I have sage notebook working perfectly on my Mac (including plots of course). now I would like to use the sage-shell too. I use the -ipython -pylab options but when I try to draw anything, using for instance:
x=randn(1000); hist(x)
or
f = plt.figure()
plt.plot(range(10),range(10))
plt.show()
nothing happend. Nevetheless if I ask for plt.savefig('blahblah.png') I have the image on my disk...
what did I messed?