Python Git Downloading Jupyter Notebook
I am trying to download a Jupyter Notebook from git. I downloaded the notebook by right clicking on the file and saving it. It is an ipynb file, but the file size seems a bit big t
Solution 1:
You probably downloaded the html github uses to display a notebook. To download the notebook itself, you can use the "raw" file link in github.
Solution 2:
you can also grab the notebook with a wget
using the raw github link (note if the link contains a token you may have to delete the portion after the .ipynb extension before opening the file with jupyter notebook)
for example: click on the notebook's download button in github, then open the terminal and type something like wget https://raw.githubusercontent/the_notebook_i_want.ipynb
Post a Comment for "Python Git Downloading Jupyter Notebook"