Cannot import tkinter after installing Python 3 with pyenv

后端 未结 3 810
小鲜肉
小鲜肉 2021-01-12 00:58

I got problems with importing tkinter after installing Python version 3.4.2 with pyenv. My system Python is version 2.7.6. I am using Ubuntu 14.04.

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-12 01:10

    Change your code to:

    import tkinter
    

    Documentation link:

    Most of the time, tkinter is all you really need, but a number of additional modules are available as well. The Tk interface is located in a binary module named _tkinter. This module contains the low-level interface to Tk, and should never be used directly by application programmers. It is usually a shared library (or DLL), but might in some cases be statically linked with the Python interpreter.

提交回复
热议问题