ImportError: cannot import name 'PILLOW_VERSION' from 'PIL' (/home/dy/miniconda3/lib/python3.8/site-packages/PIL/__init__.py)
时间: 2023-03-29 15:04:30 浏览: 138
这是一个 Python 的错误信息,可能是因为 PIL 模块中没有 PILLOW_VERSION 这个属性或方法导致的。建议检查代码中是否正确导入了 PIL 模块,并且确认 PILLOW_VERSION 是否存在。
相关问题
ImportError: cannot import name PILLOW_VERSION from PIL (/home/lenovo/anaconda3/envs/myenv/lib/python3.7/site-packages/PIL/__init__.py)
这个错误通常出现在你的代码中导入了 PIL 模块,但是无法导入其中的 PILLOW_VERSION 属性。这可能是由于你的 PIL 库版本过低导致的,因为 PILLOW_VERSION 属性是在 PIL 2.1.0 版本中添加的。你可以尝试将 PIL 升级到最新版本,或者检查你的代码是否正确导入了 PIL 模块。如果问题仍然存在,你可以考虑卸载并重新安装 PIL 库。
ImportError: cannot import name 'PILLOW_VERSION' from 'PIL' (/root/miniconda3/lib/python3.7/site-packages/PIL/__init__.py)怎么办
这个错误通常是由于安装了多个 PIL 版本导致的。您可以尝试通过以下命令卸载 PIL,并安装最新版本来解决此问题:
pip uninstall PIL
pip install Pillow
如果该解决方案不起作用,则可以尝试卸载 PIL 和 Pillow,然后重新安装Pillow:
pip uninstall PIL
pip uninstall Pillow
pip install Pillow
阅读全文