2017-04-08 19 views

回答

1

看起来改变表格样式的PR好像是here,所以也许将以前的css复制到~/.jupyter/custom/custom.css文件中就可以了。

1

在升级到Jupyter 5之后,自动完成功能无法正常工作,并且所有事情都超慢,我还想要旧的表格格式。我所做的降级到Jupyter 4是这样的:

  1. pip install package==version所有这些软件包:
    • jupyter(1.0.0)
    • jupyter客户端(4.4.0)
    • jupyter控制台(5.0.0)
    • jupyter芯(4.2.0)
    • qtconsole(4.2.1)
    • nbconvert(4.2.0)
    • ipywidgets(5.2.2)
    • ipykernel(4.5.0)
    • 笔记本(4.2.3)

例如pip install qtconsole==4.2.1

这将恢复到以前的表格格式的旧版本。

  • 为了通过解决缺失的自动完成功能降级jedi

    • pip install jedi==0.9.0
  • 溶液这里找到:https://github.com/ipython/ipython/issues/10493#issuecomment-298966390

    这对我有用,但我确定有很多不同的组合这些软件包和版本将会有所斩获。