ERROR: Could not find a version that satisfies the requirement cython>=0.29.21 (from versions: none)
时间: 2023-12-19 21:32:38 浏览: 161
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
根据引用内容,你遇到了一个安装PIL库失败的问题,错误提示为"Could not find a version that satisfies the requirement cython>=0.29.21 (from versions: none)"。这个错误是由于你的电脑是64位的,而官网提供的安装包只有32位的导致的。
解决这个问题的方法是使用pip命令安装cpython,并指定使用豆瓣源进行安装。具体命令如下:
```shell
pip install cpython -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
```
这样就可以解决安装PIL库失败的问题了。
阅读全文