I have a strange problem with matplotlib under Eclipse I've tested this code and this works fine in the command line:
import matplotlib.pyplot as plt
import matplotlib.pylab as pylab
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()
But when I execute this code under Eclipse, there is nothing shown. I see that pydev understood all my imports and there is no error message.