Skip to content

Instantly share code, notes, and snippets.

@Ddedalus
Created November 4, 2019 13:17
Show Gist options
  • Select an option

  • Save Ddedalus/32d934b5cacd784424e6fc1fe7bd7c4b to your computer and use it in GitHub Desktop.

Select an option

Save Ddedalus/32d934b5cacd784424e6fc1fe7bd7c4b to your computer and use it in GitHub Desktop.
Plotly disable interactive rendering
import plotly.io as pio
# see docs at https://plot.ly/python/renderers/
# render and display plots as png images
pio.renderers.default = "png"
# override the renderer for a specific figure
fig.show(renderer="notebook_connected")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment