在 google colab 中导入 gradio 时无法从“typing_extensions”导入名称“TypeAliasType”

问题描述 投票:0回答:1

尝试在 google colab 中将 gradio 导入为 gr 时,出现错误无法从“typing_extensions”导入名称“TypeAliasType”。

ImportError: cannot import name 'TypeAliasType' from 'typing_extensions' (/usr/local/lib/python3.10/dist-packages/typing_extensions.py)

我已经安装了 pip 和 gradio,并且尝试过使用打字扩展版本 4.6.0 到 4.9.0,但错误仍然存在。

!pip install gradio 
!pip install typing-extensions
import gradio as gr

我期望出现一个渐变界面。

代码的图像示例

python google-colaboratory gradio
1个回答
0
投票

我遇到了同样的问题,我用这个解决了它:

pip install typing_extensions>=4.5 --upgrade
© www.soinside.com 2019 - 2024. All rights reserved.