How to automatically shutdown in ipython laptop on ipdb?

I am running some cell in iPython laptop. I used the debug command %% in the head of the cell. Now, when I press ipdb and I press Ctrl + spacebar or tab, auto-completion cannot work.

How to use auto completion?

+6
source share
1 answer

Peer installation: - pip install pyreadline

Open your jupyter laptop and run the following in one cell: -
% config IPCompleter.greedy = True
Whenever you want to do autocomplete, just press TAB.

It works for me !!!

+2
source

All Articles