I want to download all the simulation with code and respective output in a .pdf file. Is there any way that it can be possible?
I'have tried downloading the Ipython notebook and opening it on my PC in jupyter notebook and then converting it to pdf. But I'm searching for the direct way to do it.
Right click the page to print to PDF or save to HTML.
The Jupyter Notebook has an option to export the notebook to many formats. It can be accessed by clicking File -> Download as -> PDF via LaTeX (or PDF via HTML - not visible in the screenshot).
As of now, downloading the jupyter notebook and then converting it to PDF is the quickest way.
If you still wish to convert the notebook to PDF on kaggle itself, you can do it using command line by following these steps:
Note that the Internet should be connected (check from the right menu).
1. Ensure all necessary libraries are installed.
!pip install nbconvert # already-installed (most probably)
!apt install pandoc # already-installed
!apt install texlive-xetex -y # this'll take a long time
2. Use nbconvert
to convert jupyter notebook to PDF
!ls # will output notebook name e.g. `__notebook_source__.ipynb`
!jupyter nbconvert --execute --to pdf __notebook_source__.ipynb
3. Now, either you can Commit and Run (see Edit below) and get this file on Output tab or simply upload it using SSH or third-party service like transfer.sh (Use file.io, transfer.sh doesn't work anymore).
#!curl --upload-file __notebook_source__.pdf https://transfer.sh/notebook.pdf
!curl -F "file=@__notebook_source__.pdf" https://file.io
This will output a url like this:https://file.io/uYWP0azE2soj
Go to the url and get your file.
Note that you can skip installing texlive-xetex
if you only want HTML file.
Edit: It turns out Kaggle has changed it GUI a little bit, so, if you're Commiting and Running by clicking on Save Version
and you're doing a Quick Save
, then you need to select Save output for this version
in Advanced Settings in order to save output pdf file. Or you can simply use Save & Run All (Commit)
, it'll save output pdf as well.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With