ImportError: cannot import name 'OrderedDict' from 'typing' (C:\Users\ldz\.conda\envs\pytorch_gpu\lib\typing.py)
时间: 2023-08-31 20:08:11 浏览: 282
Mamba selective-scan-cuda-linux-gnu.so 用此编译好的文件进行替换即可
这个错误通常是由于使用了过期的代码或版本不匹配引起的。在最新的 Python 版本中,`OrderedDict` 被移动到了 `collections` 模块中,您可以按照以下方式进行导入:
```python
from collections import OrderedDict
```
如果您使用的是较旧的 Python 版本,可以尝试更新您的 Python 版本或使用以下导入语句:
```python
from typing import OrderedDict
```
请确保您的 Python 版本与代码所使用的库和模块版本兼容。
阅读全文