Could not find a version that satisfies the requirement git (from versions: none)
时间: 2023-11-11 07:04:44 浏览: 27
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示通常是因为你没有安装 Git 或者 Git 的版本过低导致的。你可以尝试通过以下命令安装 Git:
```
sudo apt-get update
sudo apt-get install git
```
如果你已经安装了 Git,可以通过以下命令检查 Git 的版本:
```
git --version
```
如果版本过低,可以通过以下命令升级 Git:
```
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
```
阅读全文