codota / jupyter-tabnine

Autocompletion with Deep Learning on Jupyter Notebook
MIT License
791 stars 123 forks source link

How to remove tabnine from Jupyter notebook? #36

Open thecoducer opened 4 years ago

thecoducer commented 4 years ago

I'm not able to remove tabnine from jupyter notebook. Did pip3 uninstall jupyter-tabnine. It uninstalled the package but "Jupyter Tabnine" is still showing under the Help dropdown list in notebook. Kindly help.

nbswords commented 4 years ago

You need to install Jupyter_tabnine back with pip3 install jupyter-tabnine After install it back. Run jupyter nbextension uninstall --py jupyter_tabnine firstly, then run pip3 uninstall jupyter-tabnine.

skorphil commented 3 years ago

i've just uninstalled jupyter_tabnine extension:

pip3 install jupyter-tabnine
jupyter nbextension uninstall --py jupyter_tabnine
pip3 uninstall jupyter-tabnine

The problem is when i launching jupyter lab it still trying to load this module.

In terminal i see:

[W 2021-03-27 18:28:22.010 ServerApp] The module 'jupyter_tabnine' could not be found. Are you sure the extension is installed?

How to completely remove jupyter_tabnine so no warning messages appeared?

skorphil commented 3 years ago

Well, now i deleted it as decribed https://stackoverflow.com/questions/66833296/how-to-prevent-jupyterlab-to-load-deleted-extensions?noredirect=1#comment118161760_66833296