从文档(终端中的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未定义。 我做错了什么?