14

I have googled all over, and don't see where to get pylab.

What am I missing?

Thanks!

Stals
  • 1,543
  • 4
  • 27
  • 52
Jonesome Reinstate Monica
  • 6,618
  • 11
  • 65
  • 112

2 Answers2

24

I believe there are two "versions" of pylab floating around/being referred to.

The first is a part of matplotlib -- you just install matplotlib and do either import pylab or import matplotlib.pyplot as pyplot. (More info on pylab vs pyplot).

The second is described here, and as far as I know, doesn't exist yet. The linked version is simply describing a hypothetical vision of what the existing version of pylab could be. It's also unfortunately the first result when you try googling "pylab", which I suspect is what caused your confusion.

Source: http://matplotlib.1069221.n5.nabble.com/pylab-td23420.html#a23423

Community
  • 1
  • 1
Michael0x2a
  • 58,192
  • 30
  • 175
  • 224
1

You can get it as part of EPD's Canopy distribution.

bob.sacamento
  • 6,283
  • 10
  • 56
  • 115
  • As far as I can tell, installing it from Canopy only makes it available from their IDE tool. python 2.7 or Active-State IDE still do not find it. – guthrie Jul 20 '14 at 04:18