http://www.lfd.uci.edu/%7Egohlke/pythonlibs/
有了这个网址,再也不用担心pip 安装错版本了。
想要哪个版本的库应有尽有。
之前运行一个程序时缺少 PIL 库,本来想用pip自动安装 PIL (Python Imaging Library).
结果却发现出现这样的错误:
Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL
原来好像是名字不对,根据网上的经验找到了 Pillow 这个库,安装上这个库之后,重新 import PIL 便成功导入了。