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
PyPlot is currently broken for me on master in REPL due to JuliaLang/julia#19993. The issue seems to be that application/postscript and image/svg+xml are istextmime so displayable of them returns true for the REPL (TextDisplay), triggering the logic to use the Agg backend instead of showing a window....
Removing the two problematic entries from aggformats locally fixes the issue (obviously not the right solution).
The text was updated successfully, but these errors were encountered:
I think it would be fine to just define isdisplayok() = displayable(MIME("image/png")), on the theory that any real graphical display should at least support PNG.
PyPlot is currently broken for me on master in REPL due to JuliaLang/julia#19993. The issue seems to be that
application/postscript
andimage/svg+xml
areistextmime
sodisplayable
of them returns true for the REPL (TextDisplay
), triggering the logic to use theAgg
backend instead of showing a window....Removing the two problematic entries from
aggformats
locally fixes the issue (obviously not the right solution).The text was updated successfully, but these errors were encountered: