So, I've been trying to save a jupyter notebook as PDF but I just can't figure out how to do this. The first thing I try is from the file menu just download as PDF, but doing that results in:
nbconvert failed: PDF creating failed
the next thing I try is try to do the conversion from the Command Prompt like this
$ ipython nbconvert --to latex --post PDF MyNotebook.ipynb
but again, this results in an error message
ImportError: No module named 'PDF'
and if I try
$ ipython nbconvert --to latex MyNotebook.ipynb
this results in
IPython.nbconvert.utils.pandoc.PandocMissing: Pandoc wasn't found:
Please check that pandoc is installed
if I try to install pandoc (pip install pandoc
), this gives me
ImportError: No module named 'ConfigParser'
and this is where I get stuck because I just don't know what else to do. Anyone have idea how to fix whatever is wrong?