我正在尝试在我的机器上安装Codegen .
在使用virtualenv
安装时,我得到以下错误:
pip3 install -r requirements.txt
Looking in links: https://download.pytorch.org/whl/torch_stable.html
ERROR: Could not find a version that satisfies the requirement torch==1.9.0+cu111 (from versions: 1.4.0, 1.5.0, 1.5.1, 1.6.0, 1.7.0, 1.7.1, 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.11.0)
ERROR: No matching distribution found for torch==1.9.0+cu111
我还尝试使用conda
安装库。使用conda
,我得到以下错误:
CondaValueError: could not parse '--find-links https://download.pytorch.org/whl/torch_stable.html' in: requirements.txt
> cat requirements.txt
--find-links https://download.pytorch.org/whl/torch_stable.html
torch==1.9.0+cu111
transformers==4.16.2%
我在安装车轮时遇到了这个问题。
我通过修改.whl文件 解决了这个问题。xxxx.whl/xxxxx.dist-info/元数据中
Requires-Dist: torch (==1.9.1+cu111)
Requires-Dist: torchvision (==0.10.1+cu111)
删除' + cu111":
Requires-Dist: torch (==1.9.1)
Requires-Dist: torchvision (==0.10.1)