我在 shell 中使用这个命令来安装 PIL:
easy_install PIL
然后我运行python并输入:import PIL。但我收到此错误:
python
import PIL
Traceback (most recent call last): File "<console>", line 1, in <module> ImportError: No module named PIL
我从来没有遇到过这样的问题,您觉得呢?
在 shell 中运行:
pip install Pillow
注意:PIL 已被弃用,pillow是其继任者。