How to remove it and revert back to original key bindings?
deadlytackler5 opened this issue · 2 comments
deadlytackler5 commented
How to remove it and revert back to original key bindings. Am on Ubuntu 16.04...
punchagan commented
You can get the location of the nbextensions directory by running the following snippet:
from notebook.nbextensions import _get_nbextension_dir
_get_nbextension_dir(user=True) #user = False if installed as root
You can remove the extension from there to restore original keybindings.
rmcgibbo commented
Thanks @punchagan. Closing.