PIL 全稱:Pillowpython
在使用PIL4.2.1版本讀取jpeg文件時,報cannot identify image file,去github源查找緣由:https://github.com/python-pillow/Pillow/issues/2628 ,感受坑比較大,因此迴避了這個版本git
從新卸載掉Pillow github
sudo pip uninstall Pillow
從新下載,因爲使用官方的鏡像太慢,也規避掉並指定3.3.1版本,採用國內豆瓣的源:ide
pip install Pillow=3.3.1 -i https://pypi.douban.com/simple
這樣問題解決.code