這篇文章主要介紹vscode無法加載tkinter怎么辦,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供新河網(wǎng)站建設(shè)、新河做網(wǎng)站、新河網(wǎng)站設(shè)計(jì)、新河網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、新河企業(yè)網(wǎng)站模板建站服務(wù),十余年新河做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
學(xué)Python配置完了VScode,在安裝easygui后遇到了一些問題。
代碼如下:
import easygui easygui.msgbox("Hello world.")
Ctrl+Shift+B,運(yùn)行報(bào)錯(cuò),報(bào)錯(cuò)如下:
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'
看到ImportError: No module named '_tkinter'才知道,原來是沒有tkinter這個(gè)模塊。
在終端里面安裝上tkinter:
sudo apt-get install python3-tk
完成之后在運(yùn)行之前的Python代碼,發(fā)現(xiàn)已經(jīng)成功運(yùn)行啦。
以上是“vscode無法加載tkinter怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!