导入pycreenshot会在Ubuntu 16.04上显示错误“没有名为'PIL'的模块”

时间:2018-01-12 15:22:16

标签: python ubuntu python-imaging-library

我正在尝试使用Python版本3.5.2在Ubuntu 16.04上使用pyscreenshot

我已经按照pyscreenshot网站上的Ubuntu安装说明进行操作:

sudo apt-get install python-pip
sudo apt-get install python-pil
sudo pip install pyscreenshot

Python代码失败:

import pyscreenshot as ImageGrab

出现此错误消息:

from PIL import Image
ImportError: 'No module named PIL'

我在其他StackOverflow问题上看到我应该尝试

sudo apt-get install python3-pil

但这也没有帮助,提前感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

对我来说有用的是安装Pillow而不是PIL:

pip install pillow