Home > Net >  How to make the output appear in github using jupyter notebook
How to make the output appear in github using jupyter notebook

Time:03-31

I am using Github to create a portfolio. I wrote some code in Google Colab and uploaded it to Github. But I can't see the output. I'd like to see the output appear, so the person who sees my portfolio would understand what I have done.

Is there any way to show the output in github?

Colab: enter image description here

Github:

enter image description here

CodePudding user response:

nbviewer, provided by the Jupyter community, offers many types of rich output rendering and interactivity for previously run notebooks.

nbviewer has several full-featured abilities GitHub doesn't and presents it in a nice way that's not overwhelming for those not as tech savvy as GitHub users. You can point it at any GitHub or gist, or even where the notebook code is online at a URL. The link to the view can be shared with others.

I like to think of the Github notebook viewer as a quick preview.

  • Related