欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

调用matplotlib时tkinter报错

程序员文章站 2022-03-02 17:32:43
...

在一台新机器上配置环境后运行老程序,总会出现各种诡异的错误。

比如,在python3.6下运行matplotlib,报错找不到tkinter:

  File "/usr/local/lib/python3.6/tkinter/__init__.py", line 36, in <module>
    import _tkinter # If this fails your Python may not be configured for Tk
ModuleNotFoundError: No module named '_tkinter'

解决办法也是林林总总,但是最简单有效的如下:

sudo apt-get install python3-tk

 everything great then. 

 

相关标签: 成长之路