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
snap Firefox has its own /tmp directory now. snap Firefox no longer sees the real /tmp directory - so it can't find the plotly generated HTML file.
Firefox 119.0
Ubuntu 22.04
Possible solution: plotly already provides plot.write_html(filename) - so just provide a plot.show(filename) ?
Thanks!
The text was updated successfully, but these errors were encountered:
- the show() method by default creates a random named file in `/tmp`
dir, however in some cases `/tmp` is not available, e.g., snap's Firefox
runs in an isolated enviroment and cannot access the system's `/tmp`
- provide a method that calls write_html followed by show for easier
access
Closes#170
Signed-off-by: Andrei Gherghescu <[email protected]>
@MarkSwanson , I added a straightforwad implementation in #217. Is this what you had in mind as well?
I actually used it as I got bit by snap as well :)
snap Firefox has its own /tmp directory now. snap Firefox no longer sees the real /tmp directory - so it can't find the plotly generated HTML file.
Firefox 119.0
Ubuntu 22.04
Possible solution: plotly already provides plot.write_html(filename) - so just provide a plot.show(filename) ?
Thanks!
The text was updated successfully, but these errors were encountered: