ImportError: cannot import name 'PILLOW_VERSION' from 'PIL' (/root/miniconda3/lib/python3.7/site-packages/PIL/__init__.py)怎么办
时间: 2023-11-12 16:05:50 浏览: 200
python3 解决cannot import name '_AES'问题
5星 · 资源好评率100%
这个错误通常是由于安装了多个 PIL 版本导致的。您可以尝试通过以下命令卸载 PIL,并安装最新版本来解决此问题:
pip uninstall PIL
pip install Pillow
如果该解决方案不起作用,则可以尝试卸载 PIL 和 Pillow,然后重新安装Pillow:
pip uninstall PIL
pip uninstall Pillow
pip install Pillow
阅读全文