2017-05-21 87 views
0

我想知道是否有可能將Jupyter筆記本導出到與筆記本本身不同的目錄下。我使用它來構建筆記本的HTML版本,並且我希望它們在我的GitHub回購庫中位於docs/下(這是爲了利用GH頁面)。nbconvert:導出到另一個目錄?

回答

1

NBConvert的--output-dir參數做到這一點:https://nbconvert.readthedocs.io/en/latest/install.html

您可以使用它通過命令行或從Jupyter筆記本內。

命令行:

jupyter nbconvert --output-dir='./docs' --to html my_notebook_to_be_converted.ipynb 

從Jupyter筆記本電池內:

!jupyter nbconvert --output-dir='./docs' --to html my_notebook_to_be_converted.ipynb 

注意,你不需要用 「--to HTML」 轉換一個筆記本到html,因爲默認輸出格式是html。我只是爲了清楚而包含了這個論點。

相關問題