error: torch-1.8.1-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.
时间: 2023-04-29 11:00:52 浏览: 308
这个错误提示是因为你的电脑平台不支持安装该版本的torch包。可能是你的电脑系统不是64位的,或者你的Python版本不匹配。建议你检查一下你的电脑系统和Python版本,然后下载对应的torch包进行安装。
相关问题
ERROR: torch-1.8.1-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.
这个错误通常表示你下载了不适用于你当前操作系统、Python版本和架构的torch wheel文件。你可以尝试下载适用于你的操作系统、Python版本和架构的torch wheel文件,或者使用conda或pip直接安装torch。比如,如果你使用Python 3.8和64位Windows操作系统,你可以执行以下命令安装torch:
```
pip install torch==1.8.1+cpu torchvision==0.9.1+cpu torchaudio===0.8.1 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
如果你使用的是GPU版本的torch,则需要安装相应的CUDA和cuDNN库,并使用适用于你的CUDA版本的torch wheel文件。
ERROR: torch-1.8.1+cu111-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.
这个错误可能是因为你的Python版本不是3.8,或者你的操作系统不是Windows,或者你的CUDA版本不是11.1。请检查你的Python版本、操作系统和CUDA版本是否与torch-1.8.1-cu111-cp38-cp38-win_amd64.whl文件兼容。如果不兼容,可以尝试下载与你的环境相匹配的torch版本。
阅读全文