We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Using Google Collab on Apple Silicon Mac.
Trying to run AMMICO but when running line get following error: import ammico
ImportError Traceback (most recent call last) in <cell line: 2>() 1 import os ----> 2 import ammico 3 from tqdm import tqdm
10 frames /usr/local/lib/python3.10/dist-packages/openai/_models.py in 5 from typing import TYPE_CHECKING, Any, Type, Tuple, Union, Generic, TypeVar, Callable, Optional, cast 6 from datetime import date, datetime ----> 7 from typing_extensions import ( 8 Unpack, 9 Literal,
ImportError: cannot import name 'Sequence' from 'typing_extensions' (/usr/local/lib/python3.10/dist-packages/typing_extensions.py)
The text was updated successfully, but these errors were encountered:
Hi, @TMonty-123, yes this is a conflict of the subsequent dependencies. If you
pip install --upgrade typing-extensions
in your environment, that should solve the issue. This is currently a workaround and results from sub-dependencies of ammico's dependencies.
Sorry, something went wrong.
No branches or pull requests
Using Google Collab on Apple Silicon Mac.
Trying to run AMMICO but when running line get following error: import ammico
ImportError Traceback (most recent call last)
in <cell line: 2>()
1 import os
----> 2 import ammico
3 from tqdm import tqdm
10 frames
/usr/local/lib/python3.10/dist-packages/openai/_models.py in
5 from typing import TYPE_CHECKING, Any, Type, Tuple, Union, Generic, TypeVar, Callable, Optional, cast
6 from datetime import date, datetime
----> 7 from typing_extensions import (
8 Unpack,
9 Literal,
ImportError: cannot import name 'Sequence' from 'typing_extensions' (/usr/local/lib/python3.10/dist-packages/typing_extensions.py)
The text was updated successfully, but these errors were encountered: