首先找到你的.ipython文件夹下的\profile_default文件夹,打开,按住shift并点击鼠标右键,在此处打开命令行,然后输入:
ipython profile create
此时该文件夹下多出两个配置文件
ipython_config.py:打开任意ipython kernel时都会运行
ipython_notebook_config.py:打开notebook时会运行
打开ipython_config.py,在任意位置添加下面几句:
c = get_config()
# Run all nodes interactively
c.InteractiveShell.ast_node_interactivity = "all"
重启jupyter可以使用了