我刚刚从3.7提高到3.8。
我的脚本运行良好,直到我升级到3.8。
我有这行代码:
from PIL import Image, ImageTk, ImageGrab
并向我返回此错误:
from PIL import Image, ImageTk, ImageGrab
ModuleNotFoundError: No module named 'PIL'
卸载Pillow
重新将其重新安装。
答案 0 :(得分:1)
您可以尝试从wheel
安装 pip install Pillow-6.2.1-cp38-cp38-win_amd64.whl
注意:如果您要为其他系统手动安装,则此轮适用于Windows 64位和cpython 3.8。