Jupyter notebook 自动补全

Posted pscc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jupyter notebook 自动补全相关的知识,希望对你有一定的参考价值。

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后生效。

以上是关于Jupyter notebook 自动补全的主要内容,如果未能解决你的问题,请参考以下文章

Jupyter Notebook主题字体设置及自动代码补全

anaconda中jupyter notebook安装代码自动补全插件,报错“Exception: Jupyter command `jupyter-contrib` not found.”(示例代码

Jupyter notebook 自动补全

jupyter notebook 补全代码设置

Jupyter Notebook 代码补全功能配置

Jupyter Notebook 代码补全功能配置