python setup.py build develop,出现错误Searching for PIL Reading https://pypi.org/simple/PIL/ No local packages or working download links found for PIL error: Could not find suitable distribution for Requirement.parse('PIL'),已经安装pillow,还是没有解决
时间: 2024-02-11 17:10:02 浏览: 186
详解python3安装pillow后报错没有pillow模块以及没有PIL模块问题解决
这个错误可能是由于您的项目中使用了PIL而非Pillow库导致的。虽然它们的功能相似,但是它们是不同的库,需要进行区分。
您可以尝试将项目中的PIL替换为Pillow库,如果您的代码中使用了以下方式导入PIL:
```
from PIL import Image
```
那么,您可以将其替换为以下方式导入Pillow库:
```
from PIL import Image as PILImage
```
然后,再次运行`python setup.py build develop`命令,应该就能够正常运行了。
阅读全文