Could not find a version that satisfies the requirement PIL
时间: 2023-09-25 20:15:19 浏览: 84
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
To install the Python Imaging Library (PIL), you can try using the Pillow package instead. Pillow is a fork of PIL and provides a compatible and actively maintained version. You can install it using pip by running the following command:
```
pip install pillow
```
After successful installation, you can import and use the PIL module in your Python code.
阅读全文