Python 3.8 ModuleNotFoundError: No module named 'PIL'

后端 未结 1 920
没有蜡笔的小新
没有蜡笔的小新 2021-01-18 17:35

I have just upgaded from 3.7 to 3.8.

My Script worked perfectly fine, until I have upgraded to 3.8.

I have this line of code:

from PIL import         


        
1条回答
  •  深忆病人
    2021-01-18 18:15

    You can try to install from the wheel

    pip install Pillow-6.2.1-cp38-cp38-win_amd64.whl

    Note : This wheel is for windows 64 bits and cpython 3.8 if you want to install manually for a different system, you have to use another one.

    0 讨论(0)
提交回复
热议问题