1_使用face_recognition模組:錯誤AttributeError:'PngStream' object has no attribute 'chunk fcWp'(20190223)

我是小隨發表於2019-01-23

使用face_recognition模組:錯誤AttributeError:'PngStream'object has no attribute 'chunk fcWp'(20190223)

文章目錄:


說明:在使用face_recognition進行人臉識別,過濾人臉的時候報的錯誤


一、錯誤:AttributeError:‘PngStream’ object has no attribute ‘chunk fcWp’

在這裡插入圖片描述

二、解決方式

1、原因分析:

這個錯誤是由於pillow(影象處理模組)的版本造成的,可能是版本過高,降低版本即可

2、解決方法:

把pillow的版本從 5.4.1 降低到4.2.1 問題完美解決

pip install pillow==4.2.1 

相關文章