-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Description
I hadn't tested recently, but today, using master of the Jupyter notebook, I can't get offline plots to display inline, instead I get the external temporary file. Consider this simple test:
from plotly import __version__
from plotly.offline import init_notebook_mode, plot
from plotly.graph_objs import Scatter
init_notebook_mode()
print("plotly version:", __version__)
plot([Scatter(x=[1, 2, 3], y=[3, 1, 6])])
I get for output:
plotly version: 1.9.10
Out[1]: 'file:///Users/fperez/tmp/temp-plot.html'
and the plot correctly opening in a new tab by itself, but no inline notebook output. Here's a screenshot for reference:
In the JS console, I don't see anything that immediately points to the problem. Here's a screenshot, b/c copy-pasting text from the JS console makes a mish-mash of the formatting:
The above were from current Chrome on OSX, but I replicated the problem on Safari.
Any thoughts on how to proceed much appreciated. Thanks!
grantzvolsky, SephVelut, pnsvinodkumar, OnlyBelter and halo4123grantzvolsky
Metadata
Metadata
Assignees
Labels
No labels