r00
r00

Reputation: 65

. + tab AutoComplete not working in Jupyter Notebook

So out of nowhere I seemingly cannot autocomplete methods using . + Tab in Jupyter Notebook.

Currently running Jupyter 6.0.1

I've tried the following with no success:

$ sudo easy_install readline

conda install -c anaconda jedi & updated conda

and the following

pip install pyreadline

thanks!

Upvotes: 5

Views: 2786

Answers (1)

Bart Schuller
Bart Schuller

Reputation: 2784

pip install jedi --upgrade (taking it from 0.17.0 to 0.18.0) and restarting the kernel did the trick for me.

Upvotes: 1

Related Questions