Reputation: 404
I am using the following command : jupyter nbconvert --to webpdf --allow-chromium-download PNM.ipynb, to convert Jupiter notebook to a pdf file.
However, there is a timeout error. According to the documentation: "The timeout option can also be set to None or -1 to remove any restriction on execution time.". But, I am unaware as to how to use it.
Upvotes: 3
Views: 619
Reputation: 11
jupyter nbconvert --to webpdf --allow-chromium-download --ExecutePreprocessor.timeout=-1 MYFILE.ipynb
Worked for me. I am on Mac running Sonoma 14.5
Upvotes: 1