我按照here的说明安装和调试Jupyter Notebook。虽然笔记本可以按预期运行,但调试时出现问题。我尝试导入一个我定义了pre_run_cell
事件的模块:
from IPython import get_ipython
def pre_run_cell():
pass
def start():
ip = get_ipython()
ip.events.register("pre_run_cell", pre_run_cell)
start()
在调试模式下,get_ipython()
方法返回None
。这是我的launch.json
中的配置问题(我使用righ解释器保留了默认问题)还是VSC的问题?