VS code" ImportError: No module named '_tkinter' " 解决方法

来源:互联网 发布:已有备案网站增加域名 编辑:程序博客网 时间:2024/06/06 03:45

学Python配置完了VScode,在安装easygui后遇到了一些问题。


代码如下:

import easyguieasygui.msgbox("Hello world.")

Ctrl+Shift+B,运行报错,报错如下:

Traceback (most recent call last):  File "/usr/lib/python3.5/tkinter/__init__.py", line 36, in <module>    import _tkinterImportError: No module named '_tkinter'During handling of the above exception, another exception occurred:Traceback (most recent call last):  File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/utils.py", line 29, in <module>    import tkinter as tk  # python3  File "/usr/lib/python3.5/tkinter/__init__.py", line 38, in <module>    raise ImportError(str(msg) + ', please install the python3-tk package')ImportError: No module named '_tkinter', please install the python3-tk packageDuring handling of the above exception, another exception occurred:Traceback (most recent call last):  File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/utils.py", line 36, in <module>    import Tkinter as tk  # python2ImportError: No module named 'Tkinter'During handling of the above exception, another exception occurred:Traceback (most recent call last):  File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/button_box.py", line 15, in <module>    from . import utils as ut  File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/utils.py", line 43, in <module>    raise ImportError("Unable to find tkinter package.")ImportError: Unable to find tkinter package.During handling of the above exception, another exception occurred:Traceback (most recent call last):  File "/home/hongludianxue/Documents/Python file/0x00.py", line 1, in <module>    import easygui  File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/__init__.py", line 34, in <module>    from .boxes.button_box import buttonbox  File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/button_box.py", line 18, in <module>    import global_stateImportError: No module named 'global_state'



看到ImportError: No module named '_tkinter'才知道,原来是没有tkinter这个模块。

在终端里面安装上tkinter:

sudo apt-get install python3-tk

完成之后在运行之前的Python代码,发现已经成功运行啦。


注:

操作系统       Deepin 15.4.1 unstable

编辑器           Visual Studio Code 1.15.1

Python版本   Python 3.5.3