rendering errors of jupyter notebooks #183316
-
Select Topic AreaBug Body
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
this is usually a github side notebook renderer issue (not jupyter). it can happen even on small notebooks if github’s rich rendering times out or fails. github is known to impose a short rendering timeout for notebooks, which can trigger errors like unable to render code block. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks to your answer! I tested it right away. It's caused by a browser extension called Immersive translation. Turn off it, all works, also the pdf rendering. |
Beta Was this translation helpful? Give feedback.

this is usually a github side notebook renderer issue (not jupyter). it can happen even on small notebooks if github’s rich rendering times out or fails. github is known to impose a short rendering timeout for notebooks, which can trigger errors like unable to render code block.
try (in order):
check github status (if github.com is degraded, rendering may fail until it’s resolved).
rule out browser issues: hard refresh, disable extensions, and try a different browser (this has been reported as browser specific at times).
workarounds to view the notebook now: click raw or download and view locally, or use nbviewer for public repos
if only some notebooks fail: remove heavy or interactive ou…