0

I want to customize nbconvert's output by providing additional TemplateExporter config options such as exclude_markdown when converting .ipynb to .py. However, none of the configs I provide ever get recognized on Jupyter 4.1.0.

enter image description here

What am I missing?

Some Noob Student
  • 14,186
  • 13
  • 65
  • 103

1 Answers1

1

Have you update nbconvert ? check with jupyter nbconvert --version; this option is relatively recent (commit dates Mars 2017).

The version of Jupyter does not matter, it is just a metapackage, and 4.1.0 is likely the version of Jupyter Core, as Jupyter latest is still 1.0.0.

Matt
  • 27,170
  • 6
  • 80
  • 74
  • Turns out nbconvert is it's own package that can be updated as well! `pip install nbconvert -U` did the trick. Thank you. – Some Noob Student Sep 25 '17 at 20:33
  • Yes, sorry if I was unclear; almost all of the Jupyter packages are different components that can be updated independently. – Matt Sep 25 '17 at 21:24