首頁  >  文章  >  開發工具  >  vscode無法載入tkinter如何解決

vscode無法載入tkinter如何解決

尚
原創
2020-03-28 11:07:295711瀏覽

vscode無法載入tkinter如何解決

學Python配置完了VScode,在安裝easygui後遇到了一些問題。

程式碼如下:

import easygui
easygui.msgbox("Hello world.")

Ctrl Shift B,執行報錯,報錯如下:

Traceback (most recent call last):
  File "/usr/lib/python3.5/tkinter/__init__.py", line 36, in 
    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 
    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這個模組。

在終端機裡面安裝上tkinter:

sudo apt-get install python3-tk

完成之後在執行之前的Python程式碼,發現已經成功運行啦。

推薦學習:vscode教學

#

以上是vscode無法載入tkinter如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn