(torch) C:\Users\Administrator>conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia -i https://pypi.tuna.tsinghua.edu.cn/simple usage: conda-script.py [-h] [-V] command ... conda-script.py: error: unrecognized arguments: -i
时间: 2023-07-15 21:11:59 浏览: 437
nerf2mesh以及tiny-cuda-nn及pytorch3d安装指南.md
这个错误是因为 `-i` 参数不是 `conda install` 命令的有效参数。可以尝试去掉 `-i` 参数,使用以下命令:
```
conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
```
如果你需要使用清华镜像源,可以在执行命令前设置清华镜像源:
```
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
```
然后再执行安装命令。
阅读全文