使用 pip3 安装 pytorch 时出现问题:-f 选项需要 1 个参数
Problem with installing pytorch with pip3: -f option requires 1 argument
我正在尝试在 linux 中使用 cuda 版本 11.1
安装手电筒
我检查了这个:从本地开始 |火炬
它说代码是
pip3 install --user torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f
然而,这一行给出了这个错误
-f option requires 1 argument
有人可以帮忙吗?
在查看 Pytorch 安装说明时,您似乎在 -f
之后缺少 link
根据https://pytorch.org/,pip 命令为
pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
您缺少 https://download.pytorch.org/whl/torch_stable.html,因此出现错误
萨萨克
你一定错过了https://download.pytorch.org/whl/torch_stable.html
使用下面的 cmd
pip3 install torch==1.9.0+cu102 torchvision==0.10.0+cu102 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
我正在尝试在 linux 中使用 cuda 版本 11.1
安装手电筒
我检查了这个:从本地开始 |火炬
它说代码是
pip3 install --user torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f
然而,这一行给出了这个错误
-f option requires 1 argument
有人可以帮忙吗?
在查看 Pytorch 安装说明时,您似乎在 -f
之后缺少 link根据https://pytorch.org/,pip 命令为
pip3 install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
您缺少 https://download.pytorch.org/whl/torch_stable.html,因此出现错误
萨萨克
你一定错过了https://download.pytorch.org/whl/torch_stable.html
使用下面的 cmd
pip3 install torch==1.9.0+cu102 torchvision==0.10.0+cu102 torchaudio===0.9.0 -f https://download.pytorch.org/whl/torch_stable.html