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?
source
share