Reputation: 16997
I am trying to convert my notebook to html from the file menu (nice feature added in 2.0), but when I do this I get a 500 : Internal Server Error screen with the text:
nbconvert failed: Pandoc wasn't found.
Please check that pandoc is installed:
http://johnmacfarlane.net/pandoc/installing.html
I've installed Pandoc from the link using the windows installer but keep getting the same error. Any suggestions on how to fix this? Where do I need to put the Pandoc folder or pandoc.exe that I just downloaded to make this work?
Upvotes: 2
Views: 9370
Reputation: 96
Upvotes: 8
Reputation: 351
After installing pandoc from here make sure you've restarted jupyter and the terminal instance it is running from to update the path. (Aka part 4 of user3638179's answer).
Upvotes: 0
Reputation: 347
In my case notebook server complained about a missing module pygments.formatters: "No module named pygments.formatters"
Doing a "pip install pygments" fixed the problem for me.
I am using IPython version 2.1.0.
Upvotes: -2