报错AttributeError: can't set attribute (image.mode = desired_mode)
docker 容器中安装了Pillow包,以及 imageio[ffmpeg], 运行程序时报错AttributeError: can't set attribute (image.mode = desired_mode),
发现imageio==2.31.5版本与Pillow==10.1.0版本不兼容导致报错,只需将Pillow版本降为10.0即可,最近Pillow==10.2.0版本也发行了,这个不兼容bug估计解决了,总之避开10.1.0版本。
方法:安装指定版本
pip3 install Pillow==10.0
如果安装了9.5等较低的版本,可以升级到10.0
python3 -m pip install --upgrade Pillow==10.0
Enjoy it!