I'm trying to teach myself Python via a few resources. One of said resources is a book titled "Doing Math with Python: Use Programming to Explore Algebra, Statistics, Calculus, and More" as well as "Computational Physics." Chapter 2 of the former is all about graphing.
I (thought that I) installed matplotlib. My terminal continues to tell me that I have done so, however, when I type the following into IDLE, I am presented with the following error message:
from pylab import * Traceback (most recent call last): File "", line 1, in from pylab import * ModuleNotFoundError: No module named 'pylab'
I thought pylab was included with matplotlib. I feel like I've tried everything short of selling my soul. Some input would be greatly appreciated.