Home>Article>Development Tools> How to solve vscode cannot load tkinter
After learning Python and configuring VScode, I encountered some problems after installing easygui.
The code is as follows:
import easygui easygui.msgbox("Hello world.")
Ctrl Shift B, the error is reported when running, the error is as follows:
Traceback (most recent call last): File "/usr/lib/python3.5/tkinter/__init__.py", line 36, inimport _tkinter ImportError: 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 import tkinter as tk # python3 File "/usr/lib/python3.5/tkinter/__init__.py", line 38, in raise ImportError(str(msg) + ', please install the python3-tk package') ImportError: No module named '_tkinter', please install the python3-tk package 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 36, in import Tkinter as tk # python2 ImportError: 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 from . import utils as ut File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/utils.py", line 43, in 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 import easygui File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/__init__.py", line 34, in from .boxes.button_box import buttonbox File "/home/hongludianxue/.local/lib/python3.5/site-packages/easygui/boxes/button_box.py", line 18, in import global_state ImportError: No module named 'global_state'
Only when I saw ImportError: No module named '_tkinter' did I know that there is no tkinter. this module.
Install tkinter in the terminal:
sudo apt-get install python3-tk
After completion, run the previous Python code and find that it has been successfully run.
Recommended learning:vscode tutorial
The above is the detailed content of How to solve vscode cannot load tkinter. For more information, please follow other related articles on the PHP Chinese website!