使用ZMQTerminalIPythonApp.file_to_run打开jupyter控制台时运行文件

时间:2015-11-13 09:55:33

标签: python ipython jupyter

从文档(终端中的jupyter console --help-all),似乎进入 终端中的jupyter console --ZMQTerminalIPythonApp.file_to_run='name_of_file'应该打开一个jupyter控制台,然后运行指定的文件。

但是,如果我准备一个测试文件:

# python file named 'test.py'
a = 101

并在我的命令提示符

中运行以下命令
jupyter console --ZMQTerminalIPythonApp.file_to_run='test.py'`

然后在打开的ipython终端中尝试以下命令:

a

我收到一个NameError,告诉我a未定义。 我做错了什么?

0 个答案:

没有答案