错误OSError: cannot identify image file ‘test.webp’

使用下面命令可以看出是否支持webp

python
> from PIL import features
> print (features.check_module('webp'))
False
conda install libwebp 不起作用

需要安装libwebp并且重装pillow

sudo apt-get install libwebp-dev

 

pip install Pillow -i https://pypi.tuna.tsinghua.edu.cn/simple/

发表评论