ipython 7.19.0 Crash

Viewed 539

Hello I update my python from python 3.8.3 to python 3.9.1 and reinstall my library and packages by pip freeze > req and pip install req Of course, I updated some of the packages during installation and I installed the latest version of it Not the previous version like ipython. but Now I have problem in using ipython

It does not work at all, it does not give suggestions, it can not run a simple Python line if I press Tab For give Suggestion :/ (Very strange), and it does not have autocomplete.

here I run it in CMD And I wrote a simple code to execute :

something

something

1 Answers

Had the same problem. The issue is with jedi, you'll need to downgrade from the newest 0.18.0 to the previous 0.17.2:

conda install jedi=0.17.2
Related