PackagesNotFoundError: The following packages are not available from current channels: - torchvision=0.2.2 - pytorch=0.4.1
时间: 2023-12-30 08:24:53 浏览: 164
torch和torchvision
5星 · 资源好评率100%
根据提供的引用内容,出现了两个不同的错误信息。第一个错误是关于torch.nn模块中没有ModuleDict属性的问题,第二个错误是关于找不到torchvision=0.2.2和pytorch=0.4.1的包的问题。
针对第一个错误,可以尝试使用以下命令安装torchvision和torch的特定版本:
```shell
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple torchvision==0.4.0
pip3 install torch-0.4.0-cp35-cp35m-linux_x86_64.whl
```
针对第二个错误,可以尝试使用以下命令安装torchvision和torch的特定版本:
```shell
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple torchvision==0.2.2
pip3 install torch-0.4.0-cp35-cp35m-linux_x86_64.whl
```
阅读全文