zoukankan      html  css  js  c++  java
  • ubuntu下使用python3的有些库时,解决"raise ImportError(str(msg) + ', please install the python3-tk package') ImportError: No module named '_tkinter', please install the python3-tk package"的错误

    问题:

    在Ubuntu下使用matplotlib这个库时,运行时出现如下错误:

    raise ImportError(str(msg) + ', please install the python3-tk package')
    ImportError: No module named '_tkinter', please install the python3-tk package

    原因:

    从错误提示我们可以看到原因是:是由于python的版本没有包含tkinter的模块,只需要把tk的package安装就可以了。

    解决方案:

    终端输入命令进行安装:

    sudo apt-get install python3-tk

    再次运行,就会发现没有错误了。

  • 相关阅读:
    IBinder介绍
    Android组成部分
    Android中handler,looper与messageQueue的代码解析
    JS
    设计模式
    冒泡排序
    战斗逻辑
    mongo数据库基础
    JS闭包
    c/c++
  • 原文地址:https://www.cnblogs.com/ilym/p/8387702.html
Copyright © 2011-2022 走看看