以下命令将创建一个不带代码的html文件:
jupyter nbconvert inspect.ipynb --no-input --no-prompt
文件名为inspect.ipynb
,上面的输出为inspect.html
。
我想知道如何使输出(不在jupyter实验室中)的像元宽度变宽。
答案 0 :(得分:1)
将此单元格放入笔记本:
# https://stackoverflow.com/questions/21971449/how-do-i-increase-the-cell-width-of-the-jupyter-ipython-notebook-in-my-browser
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
并运行您的命令:
jupyter nbconvert inspect.ipynb --no-input --no-prompt
或者也许可以使用 custom.css 来做到这一点,但是我不确定。在此处How do I increase the cell width of the Jupyter/ipython notebook in my browser?
中查看第二个答案