jupyter notebook代码自动提示
时间: 2023-10-22 11:09:18 浏览: 218
jupyter notebook 写代码自动补全的实现
5星 · 资源好评率100%
可以通过安装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,即可看到代码自动提示功能已经生效。
阅读全文