cannot import name 'OrderedDict' from 'typing'
时间: 2023-10-30 17:06:24 浏览: 140
from typing import List.docx
这个问题通常出现在使用Python 3.6或更早版本的情况下,因为在这些版本中,`collections`模块中的`OrderedDict`类型没有与`typing`模块中的类型注释一起引入。要解决此问题,您可以在Python 3.7或更高版本中运行您的代码,或者在旧版本中显式导入`OrderedDict`。例如:`from collections import OrderedDict`。希望这能帮到你!
阅读全文