-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
AttributeError: module 'jedi' has no attribute 'Script' #9
Comments
I got the same error, and solved it by installing |
Hello @wookayin and @cbcoutinho, I wanted to write and let you know that I recently ran into this issue. I am currently running |
I got the same error but upgrading |
Install jedi in the host python3 (in a conda env) solved my problem (nvim 0.3.1), thanks. |
Hey guys, I've just had the similar problem but it my case it was like this and reinstalling via |
The following error occurs, autocompletion not working:
vimrc:
messages:
A solution that worked:
Reinstall
jedi
in the host python3 (g:python3_host_prog
) via pip, and the error is gone. Not sure why modulejedi
had pointed to a wrong (maybe old) version previously.Unfortunately it is documented nowhere and error handling seems not robust. For example, we may detect
jedi
is well installed and import-able using the host python3 interpreter, and warn users if not.Any other thoughts how we can improve this, as many users might experience this error?
The text was updated successfully, but these errors were encountered: