searchusermenu
  • 发布文章
  • 消息中心
点赞
收藏
评论
分享
原创

Python报错:ModuleNotFoundError No module named 'PIL'

2023-02-22 01:51:57
6
0

 

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条评论
0 / 1000
代码的路
101文章数
1粉丝数
代码的路
101 文章 | 1 粉丝
代码的路
101文章数
1粉丝数
代码的路
101 文章 | 1 粉丝
原创

Python报错:ModuleNotFoundError No module named 'PIL'

2023-02-22 01:51:57
6
0

 

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条评论
0 / 1000
请输入你的评论
2
2