无论如何我可以在Windows 8.1上将 ipython 笔记本转换为pdf吗?
我找到了解决方案,但仅适用于Linux和macOS,不适用于Windows。
答案 0 :(得分:0)
您可以安装Latex for Windows(http://latex-project.org/ftp.html),然后使用iPython documentation中提到的PDF格式转换到Latex。我相信这个命令是这样的:
ipython nbconvert --to latex --post PDF notebook.ipynb
或者您可以转换为rst,然后使用rst2pdf工具将其转换为PDF。
ipython nbconvert --to rst notebook.ipynb
然后,一旦转换为rst,就可以像这样使用rst2pdf:
rst2pdf.py notebook.rst -o notebook.pdf