75. jupyter自动代码补全

使用终端命令ipython profile create
在生成的config文件中打开注释:

75. jupyter自动代码补全_第1张图片
image.png

保存文件,重启jupyter, 工具栏仍没有出现Nbextensions:
image.png

然后,从anaconda进行终端:


75. jupyter自动代码补全_第2张图片
image.png

依次安装nbextensions和nbextensions_configurator:

  • nbextensions:
pip install jupyter_contrib_nbextensions -i https://pypi.mirrors.ustc.edu.cn/simple
jupyter contrib nbextension install --user
  • nbextensions_configurator:
pip install --user jupyter_nbextensions_configurator 
jupyter nbextensions_configurator enable --user

之后重启jupyter,出现Nbextensions:


image.png

在Nbextensions选项卡中勾去disable,并选中Hinterland:


75. jupyter自动代码补全_第3张图片
image.png

效果如下:


75. jupyter自动代码补全_第4张图片
image.png

你可能感兴趣的:(75. jupyter自动代码补全)