Replies: 1 comment
-
Код выполняется в Google Colab |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
!pip install typing_extensions==4.8.0
from typing_extensions import TypeAlias
!pip install nest_asyncio
import nest_asyncio
nest_asyncio.apply()
try:
from aiogram import Bot, Dispatcher, executor, types
except:
!pip install aiogram
from aiogram import Bot, Dispatcher, executor, types
Выводит: ImportError: cannot import name 'TypeAliasType' from 'typing_extensions' (/usr/local/lib/python3.10/dist-packages/typing_extensions.py)
Помогите решить данную проблему
Beta Was this translation helpful? Give feedback.
All reactions