Runtime error matplotlib.pyplot.subplots ()

I have a script that creates png images from log data. It works fine on a production machine, but now imposes errors on a new box when processing this line:

    fig, ax = plt.subplots(1,1, figsize=(20,14))


AttributeError: 'module' object has no attribute 'subplots'

I suspect that the problems vary in different modules. Any ideas?

+5
source share
1 answer

The latest version of Ipython does not have this problem. Assuming this as the answer suggested by @Jay Bosamiya to close this question.

+1
source

All Articles