No matching distribution found for whale-optimizer是为什么
时间: 2024-05-03 19:11:06 浏览: 195
imread-0.7.4-cp37-cp37m-win_amd64
5星 · 资源好评率100%
这个错误通常出现在使用pip安装whale-optimizer时,因为pip默认从PyPI(Python Package Index)下载包,但是whale-optimizer并没有上传到PyPI,所以会出现找不到的错误。
你可以尝试从Github上下载源码,然后通过命令行进入源码目录,使用以下命令进行安装:
```
pip install .
```
或者你可以使用以下命令从Github直接安装:
```
pip install git+https://github.com/facebookresearch/whale.git
```
注意,这需要你已经安装了Git。
阅读全文