Jupyter notebook 自动补全

ipython profile create
以上命令会在~/.ipython/profile_default/目录下生成ipython_config.pyipython_kernel_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 = 400
## Experimental: Use Jedi to generate autocompletions. Off by default.
c.Completer.use_jedi = True

重启jupyter后生效。

相关文章:

  • 2021-10-02
  • 2022-01-13
  • 2021-05-12
  • 2021-08-01
  • 2021-12-24
猜你喜欢
  • 2021-12-30
  • 2021-10-06
  • 2021-10-20
  • 2021-06-02
  • 2021-04-26
  • 2021-11-11
  • 2021-08-20
相关资源
相似解决方案