import torchvision,运行时报错cannot import name 'OrderedDict' from 'typing' (D:\conda\lib\typing.py)
时间: 2024-05-06 11:20:02 浏览: 153
python3.7报错:typing-extensions.py文件按丢失
这个错误可能是因为你的 Python 版本太低,无法支持 `OrderedDict` 对象。建议升级 Python 版本到 3.7 或以上。如果你已经使用了 Python 3.7 或以上版本,可以尝试更新 `typing` 模块。可以使用以下命令更新 `typing` 模块:
```
pip install --upgrade typing
```
如果还是无法解决问题,可以尝试更新 `torch` 和 `torchvision` 模块:
```
pip install --upgrade torch torchvision
```
如果问题仍然存在,请提供更多的错误信息和代码,以便我们更好地帮助你解决问题。
阅读全文