ERROR: Could not find a version that satisfies the requirement chamfer (from versions: none)
时间: 2023-11-11 17:03:57 浏览: 135
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示通常是因为你在安装 chamfer 时使用了错误的命令或者版本不存在。请确保你已经正确安装了 pip,并且使用了正确的命令和版本号。你可以尝试使用以下命令安装 chamfer:
```
pip install chamfer==0.1.0
```
如果你已经安装了 chamfer,但是仍然遇到了这个错误,请尝试更新 pip 和 setuptools:
```
pip install --upgrade pip setuptools
```
阅读全文