我想開始使用Tkinter的Python和具有下面的代碼:導入錯誤:沒有模塊名爲_imagingtk
#!/usr/bin/python
from Tkinter import *
from PIL import ImageTk, Image
top = Tk()
dir(top)
top.title("Erstes Frame")
erstesFrame = Frame(top, height=250, width=250)
erstesFrame.pack_propagate(0)
erstesFrame.pack()
img = ImageTk.PhotoImage(Image.open("mario.gif"))
erstesBild = Label(erstesFrame, image = img)
erstesBild.pack()
top.mainloop()
但是,當我試着執行它時,它只是給我這個錯誤:
Traceback (most recent call last):
File "ToDoAPP.py", line 14, in <module>
img = ImageTk.PhotoImage(Image.open("mario.gif"))
File "/usr/local/lib/python2.7/dist-packages/PIL/ImageTk.py", line 116, in __init__
self.paste(image)
File "/usr/local/lib/python2.7/dist-packages/PIL/ImageTk.py", line 181, in paste
import _imagingtk
ImportError: No module named _imagingtk
我用python-pip安裝PIL,我的操作系統是Ubuntu 12.04,我的Python版本是2.7.3
它可以通過點安裝嗎? – dm76
@ dm76,對不起,我從來沒有嘗試過。我不確定。 – falsetru
我已經擁有該軟件包,版本:2.6.1-2,並且仍然出現錯誤。 – appas