Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

. + 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!

like image 725
sam Avatar asked Nov 07 '22 10:11

sam


1 Answers

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

like image 57
Bart Schuller Avatar answered Nov 12 '22 18:11

Bart Schuller