Ankit Tripathi
Ankit Tripathi

Reputation: 404

Navigation Timeout Exceeded: 30000 ms exceeded while using Nbconvert

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

Answers (1)

Vidyadhar Mudkavi
Vidyadhar Mudkavi

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

Related Questions