You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first time Plotly is loaded, the figure is blank and the following errors appear in the dev console:
GET https://cdn.plot.ly/plotly-3.0.1.min net::ERR_ABORTED 403 (Forbidden)
Uncaught ReferenceError: Plotly is not defined
at <anonymous>:1:179
at P.attachWidget (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1859455)
at P.insertWidget (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1858919)
at M._insertOutput (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1282454)
at M.onModelChanged (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1278810)
at m (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1832098)
at Object.l [as emit] (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1831774)
at a.emit (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1829611)
at d._onListChanged (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1273587)
at m (jlab_core.a4c5e1f5bac9ba5dc7f6.js?v=a4c5e1f5bac9ba5dc7f6:1:1832098)
When running the cell for a second time, the figure appears. If the page is refreshed, the figure disappears again.
It looks like the issue can be traced back to this line, where .js is removed from the CDN path:
It still doesn't work when downgrading to Plotly 5.24.1, although the console error is slightly different:
Uncaught ReferenceError: require is not defined
at <anonymous>:1:17
at P.attachWidget (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1859455)
at P.insertWidget (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1858919)
at M._insertOutput (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1282454)
at M.onModelChanged (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1278810)
at m (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1832098)
at Object.l [as emit] (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1831774)
at a.emit (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1829611)
at d._onListChanged (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1273587)
at m (jlab_core.a4c5e1f5ba…9ba5dc7f6:1:1832098)
When exporting to html with nbconvert, the 403 error still appears but the plot displays. Changing line 7568 of the attached html file to <script type="module">import "https://cdn.plot.ly/plotly-3.0.1.min.js"</script> removes the error from the console.
When running this cell in a JupyterLab instance:
The first time Plotly is loaded, the figure is blank and the following errors appear in the dev console:
When running the cell for a second time, the figure appears. If the page is refreshed, the figure disappears again.
It looks like the issue can be traced back to this line, where
.js
is removed from the CDN path:plotly.py/plotly/io/_base_renderers.py
Line 286 in ae0fbed
This is with Python 3.11.11, Plotly 6.0.1 and Jupyterlab 4.3.6, and occurs in both Chrome and Edge.
It still doesn't work when downgrading to Plotly 5.24.1, although the console error is slightly different:
When exporting to html with
nbconvert
, the 403 error still appears but the plot displays. Changing line 7568 of the attached html file to<script type="module">import "https://cdn.plot.ly/plotly-3.0.1.min.js"</script>
removes the error from the console.Plotly min.js issue.zip
The text was updated successfully, but these errors were encountered: