PIL遇到问题解决
Posted Gxjun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PIL遇到问题解决相关的知识,希望对你有一定的参考价值。
PIL 全称:Pillow
在使用PIL4.2.1版本读取jpeg文件时,报cannot identify image file,去github源查找原因:https://github.com/python-pillow/Pillow/issues/2628 ,感觉坑比较大,所以回避了这个版本
重新卸载掉Pillow
sudo pip uninstall Pillow
重新下载,由于使用官方的镜像太慢,也规避掉并指定3.3.1版本,采用国内豆瓣的源:
pip install Pillow=3.3.1 -i https://pypi.douban.com/simple
这样问题解决.
以上是关于PIL遇到问题解决的主要内容,如果未能解决你的问题,请参考以下文章