matplotlibipython

Error executing matplotlib.pyplot.subplots()


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

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


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

I suspect issues in version differences in various modules. Any insights?


Solution

  • Latest version of Ipython does not have this issue. Putting it as answer as suggested by @Jay Bosamiya to make this question closed.