Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In jupyter notebook, pressing tab print "ipynb_checkpoints/" instead of auto-completion

Let say I have a pandas DataFrame called "missing_data" , one of the columns is called "normalized-losses".

When I wrote

missing_data["normalized-losses"].

And then press tab I expected to see a lot of methods for pandas Series, HOWEVER, this is what I saw

missing_data["normalized-losses"].ipynb_checkpoints/

What is this, and how could I change it to auto-completion?

like image 650
Luk Aron Avatar asked Oct 04 '18 23:10

Luk Aron


1 Answers

Had same issue recently. It started happening all sudden w/o any particular changes in Jupyter or Python. I found this solution that worked for me. In Jupyter Notebook run:

%config IPCompleter.greedy=True
like image 149
user1927829 Avatar answered Oct 20 '22 10:10

user1927829