小能豆

导入错误:没有名为 PIL 的模块

python

我在 shell 中使用这个命令来安装 PIL:

easy_install PIL

然后我运行python并输入:import PIL。但我收到此错误:

Traceback (most recent call last):
  File "<console>", line 1, in <module>
ImportError: No module named PIL

我从来没有遇到过这样的问题,您觉得呢?


阅读 46

收藏
2024-09-12

共1个答案

小能豆

在 shell 中运行:

pip install Pillow

注意:PIL 已被弃用,pillow是其继任者。

2024-09-12