ImportError: cannot import name 'OrderedDict' from 'typing' (C:\Users\ldz\.conda\envs\pytorch_gpu\lib\typing.py)
时间: 2023-08-31 14:08:11 浏览: 312
Pycharm中import torch报错
5星 · 资源好评率100%
这个错误通常是由于使用了过期的代码或版本不匹配引起的。在最新的 Python 版本中,`OrderedDict` 被移动到了 `collections` 模块中,您可以按照以下方式进行导入:
```python
from collections import OrderedDict
```
如果您使用的是较旧的 Python 版本,可以尝试更新您的 Python 版本或使用以下导入语句:
```python
from typing import OrderedDict
```
请确保您的 Python 版本与代码所使用的库和模块版本兼容。
阅读全文