Python2 Python3的Tkinter库的安装

问题:

导入tkinter模块后,运行出现No module named _tkinter, please install the python-tk package ubuntu运行tkinter错误

1、确定Tkinter没有安装:

import Tkinter

Traceback (most recent call last):
File “”, line 1, in ?
File “/usr/lib/python2.4/lib-tk/Tkinter.py”, line 41, in
raise ImportError, str(msg) + ‘, please install the python-tk package’
ImportError: No module named _tkinter, please install the python-tk package

这里报错说明没有安装


2、安装Tkinter:

1.python2的安装方法(系统默认的python版本为python2)

sudo apt-get install python-tk

2.python3的安装方法

sudo apt-get install python3-tk

3.安装成功
在python下 输入

import Tkinter

没有报错,说明安装成功

你可能感兴趣的:(教程,参考)