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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it seems gensim is missing library stubs. mypy says: Cannot find implementation or library stub for module named "gensim" [import-not-found]
gensim
Cannot find implementation or library stub for module named "gensim" [import-not-found]
also I have tried typeshed (pip install types-gensim) but it wasn't available.
pip install types-gensim
The text was updated successfully, but these errors were encountered:
Gensim has historically not tried to implement static typing or type hinting, so perhaps this is just expected behavior?
OTOH, this part of the mypy docs suggests this error can also occur if it just can't find Gensim at all: https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-type-hints-for-third-party-library
mypy
In which case, seems like a not-Gensim error in your local config/Python-env?
How did you install Gensim, and can you use it separately without mypy being any part of the setup? Exactly what operations triggered the above error?
Sorry, something went wrong.
No branches or pull requests
it seems
gensim
is missing library stubs.mypy says:
Cannot find implementation or library stub for module named "gensim" [import-not-found]
also I have tried typeshed (
pip install types-gensim
) but it wasn't available.The text was updated successfully, but these errors were encountered: