unable to use matplotlib.pyplot in interactive mode

Issue #100 resolved
Angus Yeh repo owner created an issue

Unable to import matplotlib.pyplot in interactive mode, this was proabaly due to Pyinstaller "bug" unable to import hidden module. see https://stackoverflow.com/a/41862192/2368167

Fixed in commit cf89e5e.

>>> from matplotlib import pyplot as plt
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "c:\users\cyeh01~1.en-\appdata\local\temp\pip-install-hw2pog\pyinstaller\PyInstaller\loader\p
yimod03_importers.py", line 396, in load_module
  File "site-packages\matplotlib\pyplot.py", line 114, in <module>
  File "site-packages\matplotlib\backends\__init__.py", line 32, in pylab_setup
  File "c:\users\cyeh01~1.en-\appdata\local\temp\pip-install-hw2pog\pyinstaller\PyInstaller\loader\p
yimod03_importers.py", line 396, in load_module
  File "site-packages\matplotlib\backends\backend_tkagg.py", line 7, in <module>
  File "site-packages\matplotlib\externals\six.py", line 199, in load_module
  File "site-packages\matplotlib\externals\six.py", line 113, in _resolve
  File "site-packages\matplotlib\externals\six.py", line 80, in _import_module
ImportError: No module named FileDialog
>>>

Comments (1)

  1. Log in to comment