Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
This anwsered my question stackoverflow.com/questions/7534453/… – nam Nov 20 '12 at 13:37
If you found an answer, you should answer and accept your own answer. This makes it easier both for people looking to answer questions (as they can skip questions that are answered) and people looking for answers (as they might not click on questions (even if they seem relevant) that have no responses). – tcaswell Nov 21 '12 at 15:47
I can not find the way to accept my answer above? – nam Nov 21 '12 at 15:53
because it is a comment. Use the big text box at the bottom of the page. (there should be a button that says 'Post Your Answer' just below it) – tcaswell Nov 21 '12 at 15:57
Thanks I did it – nam Nov 22 '12 at 9:23

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.