I am using Julia 1.5.3, GLMakie 0.1.27. The recent FileIO update (1.6) is not compatible with GLMakie 0.1.27.
This code:
s = scatter(1:4);
display(s)
Results in this exception: https://pastebin.com/8LxCtqN2
This code:
s = scatter(1:4);
FileIO.save("s.png", s)
Results in this exception: https://pastebin.com/bYXAS3vp
Downgrading to FileIO 1.5 fixes this issue.