jupyter-tabnine
jupyter-tabnine copied to clipboard
How to remove tabnine from Jupyter notebook?
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.
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
.
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?
Well, now i deleted it as decribed https://stackoverflow.com/questions/66833296/how-to-prevent-jupyterlab-to-load-deleted-extensions?noredirect=1#comment118161760_66833296