Skip to content
Advertisement

no module named pylab on windows

I faced this issue yesterday. I saw the following questions:
No module named pylab
python error: no module named pylab

Both of the above questions gave instructions for Linux and not for Windows machines.

The Problem
I have heard about the pylab package for plotting in python.
I opened the shell and tried this and…

>>> import pylab

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    import pylab
ImportError: No module named pylab

I then installed matplotlib and scipy but could not find the .exe file for numpy.

So, could someone
Please help me with installing pylab for python 2.7.

Advertisement

Answer

There is just one step. Go to the following link and download the .msi file and then run it. It is a simple installation that installs a new EPD IDLE which comes enabled with numpy, scipy and pylab.

EPD Package

On this site you can download the .msi file. Registration is not required unless you want to update the packages. This IDLE is some version of Python 2.7.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement