我想写一个小应用程序来转换一些图像。
我认为必须使用Image.open()
,所以我必须导入Image
模块。正确?
如果是这样,这是我的问题。我读过other questions like this,但其中任何一个都适合我。我试过了:
import Image
=> ImportError: cannot import name 'VERSION'
from PIL import Image
=> ImportError: cannot import name 'VERSION'
from Pillow import Image
=> ImportError: No module named 'Pillow'
在documentation中,我读到了:
Pillow and PIL cannot co-exist in the same environment. Before installing Pillow, please uninstall PIL.
Pillow >= 1.0 no longer supports “import Image”. Please use “from PIL import Image” instead.
在我的虚拟环境中,我有PIL和Pillow目录,但是pip list
只给了Pillow(3.1.0),所以,即使阅读other answers,我尝试使用pip卸载PIL但是找不到PIL,所以我只是删除了目录PIL并安装了Pillow-PIL(现在它出现在pip list
上,而Pillow_PIL
上的目录是venv\Lib\site-packages\
):
import Image
=> ImportError: No module named 'PIL'
from PIL import Image
=> ImportError: No module named 'PIL'
from Pillow import Image
=> ImportError: No module named 'Pillow'
from Pillow-PIL import Image
=> SyntaxError: invalid syntax
(在减号上)
from Pillow_PIL import Image
=> ImportError: No module named 'Pillow_PIL'
apt-get install python-imaging
=> "apt-get"
命令unknow(我的免费翻译)
那么,现在呢?
编辑:完整错误
Traceback (most recent call last):
File "prova.py", line 1, in <module>
import Image
File "D:\Python\Envs\possedimenti\lib\site-packages\Image.py", line 1, in <mod
ule>
from PIL.Image import *
File "D:\Python\Envs\possedimenti\lib\site-packages\PIL\Image.py", line 29, in
<module>
from PIL import VERSION, PILLOW_VERSION, _plugins
ImportError: cannot import name 'VERSION'
答案 0 :(得分:3)
安装Pillow
时,会安装导入为PIL
的模块。 Pillow-PIL
显然是PIL兼容性的#34; Pillow包装&#34;。
从site-packages
删除文件通常不是一个好主意,而是使用像pip这样的包安装程序来执行此操作。
为了解决这个问题,我建议卸载Pillow-PIL,PIL(如果你有的话)和Pillow,然后重新安装Pillow。
pip3 uninstall Pillow-PIL ; pip3 uninstall PIL ; pip3 uninstall Pillow ; pip3 install Pillow