Please update jedi lib to 0.13.1
See original GitHub issueThe ST3 plugin failed to autocomplete OpenCV functions. When I started to debug the issue it appeared that the problem was the current used version of jedi lib 0.12.1
:
$ sudo python -m pip install jedi==0.12.1
Collecting jedi==0.12.1
Requirement already satisfied: parso>=0.3.0 in /usr/lib/python3.7/site-packages (from jedi==0.12.1) (0.3.1)
Installing collected packages: jedi
Successfully installed jedi-0.12.1
$ python -c "import jedi; print(jedi.Script('import cv2; cv2.find').completions()); print(jedi.__version__)"
[]
0.12.1
$ sudo python -m pip install --upgrade jedi
Collecting jedi
Requirement already satisfied, skipping upgrade: parso>=0.3.0 in /usr/lib/python3.7/site-packages (from jedi) (0.3.1)
Installing collected packages: jedi
Successfully installed jedi-0.13.1
$ python -c "import jedi; print(jedi.Script('import cv2; cv2.find').completions()); print(jedi.__version__)"
[<Completion: findChessboardCorners>, <Completion: findChessboardCornersSB>, <Completion: findCirclesGrid>, <Completion: findContours>, <Completion: findEssentialMat>, <Completion: findFundamentalMat>, <Completion: findHomography>, <Completion: findNonZero>, <Completion: findTransformECC>]
0.13.1
Please update jedi lib to 0.13.1
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
jedi · PyPI
Jedi is a static analysis tool for Python that can be used in IDEs/editors. Its historic focus is autocompletion, but does static analysis...
Read more >Jedi Documentation
Github Repository. Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins.
Read more >Bug listing with status RESOLVED with resolution OBSOLETE ...
issue with udev ("the udev init script is written for baselayout 2, please do not use this script with baselayout 1")" status:RESOLVED resolution:OBSOLETE ......
Read more >`ipython` tab autocomplete does not work on imported module
Be sure you have installed the pyreadline library. ... Try running ipython -upgrade ... conda install ipython pip install jedi==0.17.2.
Read more >Error deploying streamlit application-how to fix it?
Please fix the error and push an update, or try restarting the app. ... plotly=5.6.0 - prometheus_client=0.13.1 - prompt-toolkit=3.0.20 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
0.14.0 works with 0.13.2
@barabanus thanks. we should do that 😃