学习过程的小bug-ImportError: cannot import name ‘_imaging‘ from ‘PIL‘

使用PIL库报错!

报错:

ImportError: cannot import name '_imaging' from 'PIL' 

原因:因为PIL库已经改名为pillow,然后安装完pillow,报错依然存在

解决:

参考:这为大佬的解决方式

1、把pillow库卸载

2、指定版本从新安装pillow==8.4.0,

3、重新回到Lib\site-packages\PIL查看,发现变回_imaging.cp38了

4、代码运行也可以了

你可能感兴趣的:(新手学习笔记,学习,python,pytorch)