zoukankan      html  css  js  c++  java
  • 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后生效。

  • 相关阅读:
    02-css的选择器学习.html
    01-css-css的声明.html
    10-描点学习
    09-HTML-form标签学习.html
    08-HTML-框架标签学习.html
    07-HTML-内嵌标签学习.html
    06-HTML-表格标签学习.html
    05-HTML-超链接标签.html
    04-HTML-图片标签学习.html
    03-HTML-body标签(列表标签).html
  • 原文地址:https://www.cnblogs.com/lvdongjie/p/11231681.html
Copyright © 2011-2022 走看看