关于python:ModuleNotFoundError-No-module-named-PIL问题解决

37次阅读

共计 344 个字符,预计需要花费 1 分钟才能阅读完成。

原文链接

Python 应用时呈现报错:

ModuleNotFoundError No module named ‘PIL’

该提醒示意短少 pillow 模块,能够用以下命令装置:

pip install pillow

如果提醒:

Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: ‘/anaconda3/lib/python3.7/site-packages/Pillow-6.0.0.dist-info’
Consider using the --user option or check the permissions.

则应用命令:

pip install --user pillow

实现装置

 
 

学习更多编程常识,请关注我的公众号:

代码的路

正文完
 0