在我的conda环境中,我安装了jupyter
和ipython
。 conda list jupyter
和conda list ipython
的结果如下:
jupyter_client 5.1.0 py35_0 defaults
jupyter_console 5.2.0 py35_0 defaults
jupyter_contrib_core 0.3.3 py35_0 conda-forge
jupyter_contrib_nbextensions 0.3.1 py35_0 conda-forge
jupyter_core 4.3.0 py35_0 defaults
ipython 6.1.0 py35_0 defaults
ipython_genutils 0.1.0 py35_0 defaults
从网上我发现jupyter
使用ipython
内核。这是不是意味着安装的jupyter console
和ipython
应该是同一个东西,应该在同一个地方配置?
我觉得它们是两个完全独立的东西,一个要在.jupyter
中配置,另一个要在.ipython
中配置。
我是否需要完全放弃ipython
并仅使用jupyter
?
还有一个问题:要配置ipython
的编辑器,我使用EDITOR
环境变量,这很简单。要配置jupyter console
的编辑器,文档说
%edit runs an external text editor. You will need to set the command
for this editor via the ``TerminalInteractiveShell.editor`` option in
your configuration file before it will work.
但是在哪里设置呢?当我搜索互联网时,所有结果都会显示ipython
this one。真的很混乱。