jupyter notebook自动补全功能实现

Jupyter notebook默认关闭自动补全,需通过修改ipython_config.py文件开启。但开启后仍需按Tab键补全。为实现真正自动补全,可以安装Hinterland插件。激活环境后,使用pip安装nbextensions和jupyter_nbextensions_configurator,然后在 Nbextensions 标签页启用Hinterland。完成安装后,输入代码时将自动补全,无需按Tab键。
摘要由CSDN通过智能技术生成

Jupyter notebook使用默认的自动补全是关掉的。要打开自动补全,需修改默认配置。

命令行中输入:ipython profile create

以上命令会在~/.ipython/profile_default/目录下生成ipython_config.py和ipython_kernel_config.py

我们需要修改(ipython_config.py)的以下几行,将开启补全功能:

 

## Activate greedy completion PENDING DEPRECTION. this is now mostly taken care
#  of with Jedi.
#
#  This will enable completion on elements of lists, results of function calls,
#  etc., but can be unsafe because the code is actually evaluated on TAB.
c.Completer.greedy = True
## Experimental: restrict time (in milliseconds) during which Jedi can compute
#  types. Set to 0 to stop computing types. Non-zero value lower than 100ms may
#  hurt performance by preventing jedi to build its cache.
c.Completer.jedi_compute_type_timeout 
  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值