0

在 ipython 笔记本中,当我运行 %lsmagic 时,我得到:

Available cell magics:
%%!  %%bash  %%capture  %%file  %%perl  %%prun  %%python3  %%ruby  %%script  %%sh  %%sx   %%system  %%timeit

我期待看到:

可用的细胞魔法:%%!%%HTML %%SVG %%bash %%capture %%debug %%file %%html %%javascript %%latex %%perl %%prun %%pypy %%python %%python3 %%ruby %%script %% sh %%svg %%sx %%system %%time %%timeit %%writefile

(来自http://nbviewer.ipython.org/github/ipython/ipython/blob/master/examples/notebooks/Cell%20Magics.ipynb

我的 python 版本是 2.7.4,我的 Ipython 版本是 0.13.2。我也在 Ubuntu 上这样做。如何更新我的 ipython 魔法?

4

1 回答 1

1

元问题:回答你自己的问题的正确礼仪是什么?特别是如果答案很简单。

这个问题的解决方案相当容易。我的 ipython 版本已经过时了;apt-get 有一个过时的 ipython 版本。为了解决这个问题,我使用了 pip(我刚刚了解到这是更新和安装 python 包的规范方法)将 ipython 升级到当前的稳定版本。

于 2013-12-30T07:54:55.847 回答