jupyter notebook代码自动提示
时间: 2023-10-22 17:09:18 浏览: 210
Jupyter Notebook编辑代码块的自动补全
可以通过安装jupyter_contrib_nbextensions扩展包来实现代码自动提示功能。具体步骤如下:
1. 安装jupyter_contrib_nbextensions扩展包
```python
!pip install jupyter_contrib_nbextensions
```
2. 安装完毕后,启用扩展包
```python
!jupyter contrib nbextension install --user
!jupyter nbextension enable codefolding/main
```
3. 重启jupyter notebook,即可看到代码自动提示功能已经生效。
阅读全文