Après avoir appris Python et configuré VScode, j'ai rencontré quelques problèmes après l'installation d'easygui.
Le code est le suivant :
import easygui easygui.msgbox("Hello world.")
Ctrl+Shift+B Lors de l'exécution, une erreur est signalée :
Traceback (most recent call last): File "/usr/lib/python3.5/tkinter/__init__.py", line 36, in <module> import _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 <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 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 <module> 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 <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_state ImportError: No module named 'global_state'
Je ne l'ai pas fait. je sais jusqu'à ce que je voie ImportError: No module nommé '_tkinter' qu'il s'est avéré être Il n'y a pas de module tkinter.
Installez tkinter dans le terminal :
sudo apt-get install python3-tk
Une fois terminé, exécutez le code Python précédent et constatez qu'il a été exécuté avec succès.
Apprentissage recommandé : tutoriel vscode
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!