When I attempt to run the script from the command line I get the following errror:
File “c:\programfileswithnospace\lib\site-packages\matplotlib\__init__.py”, line 107, in <module> from . import _api, cbook, docstring, rcsetup File “c:\programfileswithnospace\lib\site-packages\matplotlib\rcsetup.py”, line 24, in <module> from matplotlib import _api, animation, cbook File “c:\programfileswithnospace\lib\site-packages\matplotlib\animation.py”, line 34, in <module> from PIL import Image File “c:\programfileswithnospace\lib\site-packages\PIL\Image.py”, line 114, in <module> from . import _imaging as core ImportError: DLL load failed while importing _imaging: The specified module could not be found.
That appears to be Windows related. I don’t know how to fix it properly. But the error looks like it’s limited to graphing. The code might work if you disable all the matplotlib graphing and do everything via text instead.
When I attempt to run the script from the command line I get the following errror:
File “c:\programfileswithnospace\lib\site-packages\matplotlib\__init__.py”, line 107, in <module>
from . import _api, cbook, docstring, rcsetup
File “c:\programfileswithnospace\lib\site-packages\matplotlib\rcsetup.py”, line 24, in <module>
from matplotlib import _api, animation, cbook
File “c:\programfileswithnospace\lib\site-packages\matplotlib\animation.py”, line 34, in <module>
from PIL import Image
File “c:\programfileswithnospace\lib\site-packages\PIL\Image.py”, line 114, in <module>
from . import _imaging as core
ImportError: DLL load failed while importing _imaging: The specified module could not be found.
Does anyone know how this could be fixed?
That appears to be Windows related. I don’t know how to fix it properly. But the error looks like it’s limited to graphing. The code might work if you disable all the matplotlib graphing and do everything via text instead.