question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Please update jedi lib to 0.13.1

See original GitHub issue

The 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:closed
  • Created 5 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
srusskihcommented, Dec 27, 2018

0.14.0 works with 0.13.2

0reactions
srusskihcommented, Dec 26, 2018

@barabanus thanks. we should do that 😃

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found