美文网首页
Tkinter Error Occurs in Importin

Tkinter Error Occurs in Importin

作者: shawn233 | 来源:发表于2018-03-27 09:21 被阅读0次
    Traceback (most recent call last):
      File "linearreg.py", line 3, in <module>
        import matplotlib.pyplot as plt
      File "/usr/local/lib/python2.7/dist-packages/matplotlib/pyplot.py", line 115, in <module>
        _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
      File "/usr/local/lib/python2.7/dist-packages/matplotlib/backends/__init__.py", line 62, in pylab_setup
        [backend_name], 0)
      File "/usr/local/lib/python2.7/dist-packages/matplotlib/backends/backend_tkagg.py", line 4, in <module>
        from . import tkagg  # Paint image to Tk photo blitter extension.
      File "/usr/local/lib/python2.7/dist-packages/matplotlib/backends/tkagg.py", line 5, in <module>
        from six.moves import tkinter as Tk
      File "/usr/local/lib/python2.7/dist-packages/six.py", line 203, in load_module
        mod = mod._resolve()
      File "/usr/local/lib/python2.7/dist-packages/six.py", line 115, in _resolve
        return _import_module(self.mod)
      File "/usr/local/lib/python2.7/dist-packages/six.py", line 82, in _import_module
        __import__(name)
      File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 42, in <module>
        raise ImportError, str(msg) + ', please install the python-tk package'
    ImportError: No module named _tkinter, please install the python-tk package
    

    Solution

    Use the command below and install tkinter.

    sudo apt-get install python-tk
    

    相关文章

      网友评论

          本文标题:Tkinter Error Occurs in Importin

          本文链接:https://www.haomeiwen.com/subject/tuljcftx.html