jupyter notebook插件代码补全
时间: 2023-10-16 19:06:13 浏览: 113
jupyter notebook 写代码自动补全的实现
5星 · 资源好评率100%
jupyter notebook插件代码补全可以通过安装jupyter_contrib_nbextensions来实现。具体步骤如下:
1. 安装jupyter_contrib_nbextensions
可以通过pip命令进行安装:
```
pip install jupyter_contrib_nbextensions
```
2. 安装完毕后,启用插件
```
jupyter contrib nbextension install --user
jupyter nbextension enable codefolding/main
```
3. 重启jupyter notebook
现在,你可以在jupyter notebook中使用代码补全功能了。
阅读全文