Слайд-выход ноутбука Jupyter - PullRequest
0 голосов
/ 18 июня 2019

Я хочу вывести блокнот jupyter с помощью следующей команды в приглашении anaconda.

jupyter nbconvert pythonjupyter.ipynb --to slides -- post serve
--SlidesExporter.reveal_theme=serif 
--SlidesExporter.reveal_scroll=True 
--SlidesExporter.reveal_transition=none

Однако вернулось:

'--SlidesExporter.reveal_theme' is not recognized as an internal or external command, operable program or batch file.
'--SlidesExporter.reveal_scroll' is not recognized as an internal or external command, operable program or batch file.
'--SlidesExporter.reveal_transition' is not recognized as an internal or external command, operable program or batch file.

Есть решение? Кажется, мне нужно установить путь, но я не знаю, где мой путь ....

1 Ответ

0 голосов
/ 18 июня 2019

Я решил это.
Передайте их вместе:

jupyter nbconvert pythonjupyter.ipynb --to slides --post serve --SlidesExporter.reveal_scroll=True
...