Jupyter notebook 自动补全
程序员文章站
2022-05-29 09:13:20
...
Jupyter notebook使用默认的自动补全是关掉的。要打开自动补全,需修改默认配置。
ipython profile create
以上命令会在~/.ipython/profile_default/
目录下生成ipython_config.py
和ipython_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后生效。
推荐阅读
-
JSP + ajax实现输入框自动补全功能 实例代码
-
Python 自动补全(vim)
-
idea快捷键设置成eclipse(自动补全代码的快捷键)
-
windows系统中Python多版本与jupyter notebook使用虚拟环境的过程
-
idea快捷键设置成eclipse(自动补全代码的快捷键)
-
Android studio怎么开启代码自动补全?
-
windows系统下jupyter notebook使用虚拟环境
-
实用Jupyter Notebook扩展工具——提升你的工作效率
-
搜狗五笔输入法怎么设置在输入网址邮箱时自动补全?
-
Jupyter Notebook使用 tqdm显示进度条(单行显示)