python3安装PIL提示如下错误,安装指令是pip3 install PIL,这个是因为PIL(Python Imaging Library)是Python中一个强大的图像处理库,但目前其只支持到Python2.7。 pillow是PIL的一个分支,虽是分支但是其与PIL同样也具有很强的图像处理库。
Could not find a version that satisfies the requirement pil (from versions: )
No matching distribution found for pil
所以我们直接安装pip3 install pillow实施,果然可以