pycharm ERROR: Could not find a version that satisfies the requirement pygame
时间: 2023-12-03 14:41:19 浏览: 294
Could not find a version that satisfies the requirement PIL (from versions: ) No matching distribu
根据提供的引用内容,你可以尝试以下两种方法解决这个问题:
1. 指定国内镜像安装
```shell
pip3 install pygame -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
```
2. 将pip版本降低
```shell
python -m pip install pip==22.2.2
pip install pygame
```
阅读全文