安装pytorch时出现The following packages are not available from current channels: - pytorch==1.2.0 - torchvision==0.4.0
时间: 2024-05-11 21:14:10 浏览: 331
torch1.2.0+torchvision0.4.0.rar
您可以尝试使用以下命令从pytorch官方渠道安装pytorch和torchvision:
```
conda install pytorch==1.2.0 torchvision==0.4.0 cpuonly -c pytorch
```
如果您需要GPU支持,请使用以下命令:
```
conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=10.0 -c pytorch
```
如果您的conda安装有问题,请尝试更新conda并重新安装:
```
conda update conda
conda install pytorch==1.2.0 torchvision==0.4.0 cpuonly -c pytorch
```
阅读全文