码迷,mamicode.com
首页 > 其他好文 > 详细

Jupyter notebook 自动补全

时间:2018-11-10 00:09:46      阅读:452      评论:0      收藏:0      [点我收藏+]

标签:his   greedy   type   lis   name   generate   activate   stl   uil   

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 自动补全

标签:his   greedy   type   lis   name   generate   activate   stl   uil   

原文地址:https://www.cnblogs.com/pscc/p/9937681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!