ImportError: cannot import name 'TypedDict' from 'typing'
时间: 2023-04-12 17:00:48 浏览: 3260
这个错误通常是由于 Python 版本过低导致的,因为 TypedDict 是在 Python 3.8 中引入的。如果你使用的是 Python 3.7 或更早的版本,那么就会出现这个错误。要解决这个问题,你需要升级你的 Python 版本到 3.8 或更高版本。另外,你也可以使用第三方库 typing_extensions 来实现类似的功能。
相关问题
ImportError: cannot import name TypedDict from typing (/opt/module/miniconda3/envs/superset/lib/python3.7/typing.py)
这个错误通常出现在 Python3.7 以下版本中,因为 `typing.TypedDict` 是在 Python3.7 中引入的。如果你的 Python 版本低于 3.7,则需要升级到 Python3.7 或更高版本才能使用 `TypedDict`。如果你不能升级 Python 版本,你可以考虑使用第三方库 `typing_extensions` 中的 `TypedDict`。你可以通过执行以下命令来安装 `typing_extensions`:
```
pip install typing_extensions
```
然后,在你的代码中导入 `TypedDict` 时,使用以下语句:
```
from typing_extensions import TypedDict
```
superset db upgrade 报错 ImportError: cannot import name TypedDict from typing (/home/owen/.conda/envs/superset/lib/python3.7/typing.py)
这个错误通常是由于 Python 版本过低导致的,因为 `typing.TypedDict` 是在 Python 3.8 中引入的新特性。你可以尝试更新你的 Python 版本到 3.8 或以上版本来解决这个问题。
如果你无法更新 Python 版本,也可以尝试安装 `typing_extensions` 库并使用其中的 `TypedDict` 类来代替 `typing.TypedDict`。你可以使用以下命令进行安装:
```
pip install typing-extensions
```
然后在你的代码中这样导入 `TypedDict`:
```
from typing_extensions import TypedDict
```
阅读全文