Been struggling to resolve this for most of the day, hoping someone can assist...

I'm running python 2.7, have installed matplotlib but when attempting to get started and import pylab I receive errors saying that no module is found, even when there is clearly a pylab module in the matplotlib directory and we're using:

from matplotlib.pylab import *

Any ideas?

link|improve this question

78% accept rate
Does import matplotlib work? Does import matplotlib.pylab work? – Seth Johnson Sep 18 '11 at 0:13
What platform are you running on? I'm gonna make a wild guess that it's windows, you have 64 bit Python and a 32 bit version of matplotlib or numpy. – Carl F. Sep 18 '11 at 1:22
feedback

3 Answers

An easy mistake could be to name the file the same way as the module. I already made the mistake for example, when trying curses, and naming the file curses.py. I had to remove the .py and .pyc files to make it works.

link|improve this answer
feedback
up vote 1 down vote accepted

Solved!

I had the script I was testing with in the same directory as the original 'matplotlib' directory from install. Using print sys.path I saw this was where the script was looking for the pylab files rather than the matplotlib directory in site-packages.

Thanks.

link|improve this answer
feedback

Try importing like this:

from pylab import *
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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