Created
November 12, 2018 14:07
-
-
Save shubhamagarwal92/6cd36eb7c694dde209b0a391389ad82e to your computer and use it in GitHub Desktop.
Convert jupyter notebooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sometimes we want to convert jupyter notebook to markdown or | |
# html when we want to write a blog/README | |
# Jupyter Notebook Conversion (nbconvert) comes to the rescue | |
# conda install jupyter will automatically install it | |
# Run as ./jupyter_converter.sh <filename> | |
# jupyter nbconvert --to html $1 | |
jupyter nbconvert --to markdown $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment