Skip to content Skip to sidebar Skip to footer

Matplotlib - Attributeerror: Module 'numbers' Has No Attribute 'integral'

I am a newbie to python and i am trying to learn online. I tried importing matplotlib on python 3.6 but i keep getting this error: problem in matplotlib - AttributeError: module 'n

Solution 1:

As you told us in your comment, your file is named numbers.py. This file is probably the problem, as it hides the numbers.py file used by matplotlib. Your numbers.py file does not provide the Integral attribute, thus the error message. Answer : Rename your file.


Post a Comment for "Matplotlib - Attributeerror: Module 'numbers' Has No Attribute 'integral'"