美文网首页linux Python 运维python热爱者
解决使用turtle库的tkinter错误

解决使用turtle库的tkinter错误

作者: bboysoul | 来源:发表于2017-11-29 11:58 被阅读35次

    概述

    首先我们要知道tkinter是每个python版本都内置的一个图形库,然后我在使用turtle库的时候turtle这个库是会调用tkinter这个库的,但是会报错,我的python版本是3.6.3的。使用pyenv安装的,报错内容如下

    Traceback (most recent call last):
      File "/home/bboysoul/PycharmProjects/game/game.py", line 1, in <module>
        import turtle
      File "/home/bboysoul/.pyenv/versions/3.6.3/lib/python3.6/turtle.py", line 107, in <module>
        import tkinter as TK
      File "/home/bboysoul/.pyenv/versions/3.6.3/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'
    

    解决方法

    其实很简单,ubuntu安装上tk-dev这个库就好了,centos的话安装tk-devel
    之后重新编译
    因为我是pyenv安装的,所以我要重新安装一遍python

    ➜  game pyenv install 3.6.3
    pyenv: /home/bboysoul/.pyenv/versions/3.6.3 already exists
    continue with installation? (y/N) y
    

    接着就不会报错了

    关于tkinter这个库我还想说的是这个库在py2和py3里的名字是不一样的python2叫Tkinter,python3叫tkinter

    欢迎关注Bboysoul的博客www.bboysoul.com
    Have Fun

    相关文章

      网友评论

        本文标题:解决使用turtle库的tkinter错误

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