Pythonの「Pillow」という外部ライブラリをインストールし、ライブラリを使用したいです。(Windows)
Pythonで画像表示をするというシステムを作っています。その過程で「Pillow」という外部ライブラリを入手するらしく、コマンドプロンプトで"pip install pillow"というコマンドを実行したところ以下のメッセージ[1]が表示され、のですが、コード上(visual studio code)ではエラーが発生しエラー内容は以下のよう([2])でした。
発生している問題・エラーメッセージ
[1]Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: pillow in /home/nagotta/.local/lib/python3.8/site-packages (8.3.1) [2]Import "PIL.Image" could not be resolved from source Import "PIL.ImageTk" could not be resolved from source
該当のソースコード
Python
1import tkinter as tk 2import tkinter.filedialog as fd 3import PIL.Image 4import PIL.ImageTk 5 6def dispPhoto(path): 7 #画像を読み込む 8 newImage = PIL.Image.open(path).resize((300,300)) 9 #そのイメージをラベルに表示する 10 imageData = PIL.ImageTK.PhotoImage(newImage) 11 imageLabel.configure(image = imageData) 12 imageLabel.image = imageData 13 14def openFile(): 15 fpath = fd.askopenfilename() 16 17 if fpath: 18 dispPhoto(fpath) 19 20root = tk.Tk() 21root.geometry("400x350") 22 23btn = tk.Button(text="ファイルを開く", command = openFile) 24imageLabel = tk.Label() 25btn.pack() 26imageLabel.pack() 27tk.mainloop()
試したこと
1.コマンドプロンプトにて"pip install pillow"を行うも上記の結果。(pillowの"p"を大文字にするも同様のエラー)
2.同様に"py -m install pillow"を実行した。結果は以下のようになった。
/usr/bin/py:16: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
from collections import Iterable
usage: py [-x] [-l] [-c PRE_CMD] [-C POST_CMD] [-V] [-h] [expression]
py: error: unrecognized arguments: -m pillow
補足情報(FW/ツールのバージョンなど)
Windows 10/何を書けばいいのかわからないので必要な情報を教えていただければお答えします。
回答2件
あなたの回答
tips
プレビュー