ImportError: Could not import PIL.Image. The use of `array_to_img` requires PIL.
时间: 2024-03-09 09:48:45 浏览: 165
解决ImportError: Could not find 'cudnn64_7.dll'
5星 · 资源好评率100%
这个错误提示是因为在你的代码中使用了`array_to_img`函数,但是没有安装PIL库。PIL是Python中用于图像处理的常用库,你需要先安装它才能使用该函数。你可以通过以下命令来安装PIL库:
```
pip install pillow
```
安装完成后,你需要在代码中添加`import PIL.Image`语句来引入该库。
阅读全文