How to enable the autocomplete in Jupyter notebook?
The jupyter_contrib_nbextensions
package contains a collection of community-contributed unofficial extensions that add functionality to the Jupyter notebook. These extensions are mostly written in Javascript and will be loaded locally in your browser.
Steps:
Open your cmd or anaconda prompt and tap the following command to install the required package:
- pip install jupyter_contrib_nbextensions
Now open your jupyter notebook and click on nbextensions tab, and enable it and check other options if needed
If you encounter any issue or you can’t get the proper display(above), activate it again by executing the following commands to install and configure jupyter_contrib_nbextensions
and nbextensions_configurator
:
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
pip install jupyter_nbextensions_configurator
jupyter nbextensions_configurator enable --user
More solutions for different issues could be found here:
#jupyternotebook #autocompletion #datascience