ModuleNotFoundError: No module named 'typing_extensions'
follow quick start I encountered this error, it's a new environment, so i think we miss a requirement.
ModuleNotFoundError: No module named 'typing_extensions'
pip install typing_extensions
can fix it.
Hi @crazyss and @maintainers, I’m still learning and just wanted to kindly check if there’s any update on the typing_extensions issue? I’d love to help by creating a PR to add it to the dependencies, but wanted to be sure it’s okay to do so.
Is this still relevant? I cannot reproduce this issue locally
I think this happens because the dependency in pyproject.toml only installs typing_extensions for Python versions below 3.11:
"typing_extensions>=4.0.0; python_version<'3.11'"
On Python ≥3.11, this condition skips installation, which leads to the ModuleNotFoundError.
Installing it manually (pip install typing_extensions) works, but it might be better to include it unconditionally or mention it in the Quick Start instructions.