ipynb格式转换

命令行的方式:

ipynb转换为python
jupyter nbconvert --to python my_file.ipynb
ipynb转换为md
jupyter nbconvert --to md my_file.ipynb
ipynb转为html
jupyter nbconvert --to html my_file.ipynb
ipython转换为pdf
jupyter nbconvert --to pdf my_file.ipynb
其他格式转换请参考
jupyter nbconvert --help
————————————————
版权声明:本文为CSDN博主「szfhy」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/szfhy/article/details/81671090

原文地址:https://www.cnblogs.com/expttt/p/12207517.html