how to convert colab notebook to HTML
# Download your colab notebook first in ipynb format # then in your conda or cmd type this code # with your notebook location jupyter nbconvert --to html notebook.ipynb # my website buggyprogrammer.com 🙂
Here is what the above code is Doing:
1. It’s converting the notebook to html format
2. It’s saving the html file in the same directory as the notebook
3. It’s opening the html file in the browser