Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/kotlin/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
IPython完整建议列表_Ipython - Fatal编程技术网

IPython完整建议列表

IPython完整建议列表,ipython,Ipython,我想在IPython中看到可能的建议的完整列表,而不是像图中那样 你需要什么命令才能做到这一点 如果按tab键两次,可以使用箭头键在该列表中导航 您还可以在配置文件目录中的文件ipython\u qtconsole\u config.py中更改此设置,从而在三种不同样式的完成器之间切换(执行ipython locate profile以查看其位置): # The type of completer to use. Valid values are: # # 'plain' : Show t

我想在IPython中看到可能的建议的完整列表,而不是像图中那样

你需要什么命令才能做到这一点


如果按tab键两次,可以使用箭头键在该列表中导航

您还可以在配置文件目录中的文件
ipython\u qtconsole\u config.py
中更改此设置,从而在三种不同样式的完成器之间切换(执行
ipython locate profile
以查看其位置):

# The type of completer to use. Valid values are:
# 
# 'plain'   : Show the available completion as a text list
#             Below the editing area.
# 'droplist': Show the completion in a drop down list navigable
#             by the arrow keys, and from which you can select
#             completion by pressing Return.
# 'ncurses' : Show the completion as a text list which is navigable by
#             `tab` and arrow keys.
c.IPythonWidget.gui_completion = 'ncurses'