Jupyter Notebook code tips and completion function tutorial

1. Description

Jupyter Notebook code prompt and completion function plug-in installation based on root environment

2. Plug-in installation steps

1. Open Anaconda Prompt and enter the terminal

 

2. Enter the following four lines of code in the command box.

pip install jupyter_contrib_nbextensions -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

jupyter contrib-nbextension install --user

pip install jupyter_nbextensions_configurator -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

jupyter nbextensions_configurator enable --user

3. Check whether the installation is successful and test

1. Open Jupyter Notebook to check whether the installation is successful

 When Nbextensions is displayed on your Jupyter Notebook interface, the installation is successful.

2. Configure your Nbextensions plugin

1. Click the Nbextensions button on the Jupyter Notebook interface

2. Uncheck the box under Configurable nbextensions

 

3. Check Hinterland (leave other options untouched)

4.Exit

 3. Test

 Implementation of Jupyter Notebook code prompts and completion functions

Guess you like

Origin blog.csdn.net/m0_60868842/article/details/124272441