0

I have installed 6.0.1 version of jupyter notebook, update all packages (conda update --all) and use it in Chrome browser. But I haven't the autocomplete after I press TAB button. I was looking for a problem, but nothing found. Is there a way to find a problem why autocomplete doesn't work?

Delphian
  • 1,650
  • 3
  • 15
  • 31

1 Answers1

1

This workaround solution should help you:

%config IPCompleter.greedy=True

Reference: https://github.com/jupyter/notebook/issues/2435

sɐunıɔןɐqɐp
  • 3,332
  • 15
  • 36
  • 40
Irfan
  • 11
  • 1
  • This solution worked for me, when adding %config Completer.use_jedi = False or reverting to jedi 0.17.2 did not. – Agent_15x Apr 08 '21 at 20:16