最近,我升级了我计算机上的每一个Python库,并且我无法将我的笔记本从“木星”的“文件”菜单中转换出来。我收到这样的信息:
500 : Internal Server Error
The error was:
nbconvert failed: '.\cumulative chart (for ANE17 poster).ipynb' exists but is not a directory我可以通过命令行进行转换,实际上这是可行的:
[NbConvertApp] Converting notebook .\cumulative chart (for ANE17 poster).ipynb to pdf
[NbConvertApp] Support files will be in cumulative chart (for ANE17 poster)_files\
[NbConvertApp] Making directory .\cumulative chart (for ANE17 poster)_files
[NbConvertApp] Making directory .\cumulative chart (for ANE17 poster)_files
[NbConvertApp] Writing 26403 bytes to .\notebook.tex
[NbConvertApp] Building PDF
[NbConvertApp] Running xelatex 3 times: ['xelatex', '.\\notebook.tex']
[NbConvertApp] Running bibtex 1 time: ['bibtex', '.\\notebook']
[NbConvertApp] WARNING | b had problems, most likely because there were no citations
[NbConvertApp] PDF successfully created
[NbConvertApp] Writing 43091 bytes to .\cumulative chart (for ANE17 poster).pdf但是,木星和/或nbconvert以及/或Pandoc/MiKTex发生了什么呢?谢谢你的意见
发布于 2017-10-30 12:23:12
事实上,木星重新安装后我也遇到了同样的问题。根据此页的说法,这是从5.2开始的notebook包的最新版本中的一个bug,应该在以后的版本中修复。目前,解决方案只是降低notebook包的级别,例如:
pip install -U "notebook<5.2"至少对我有用。
https://stackoverflow.com/questions/46865927
复制相似问题