Savefig waits infinitly

Hi,

b and I haven’t found any answers (or they don’t work): When I run a ‘savefig(plot(rand(10)), “test.xxx”)’ I get nothing, Julia interperter runs forever, when I interrupt the command (^C) I get the following log:

julia> savefig(plot(rand(10)),"test.pdf")
    @ .\io.jl:431 [inlined]
  [6] readline(s::Pipe; keep::Bool)
    @ Base .\io.jl:543
  [7] readline
    @ .\io.jl:542 [inlined]
  [8] savefig(p::Plot{Vector{GenericTrace{Dict{Symbol, Any}}}, Layout{Dict{Symbol, Any}}, Vector{PlotlyFrame}}; width::Nothing, height::Nothing, scale::Nothing, format::String)
    @ PlotlyJS C:\Users\mosiss\.julia\packages\PlotlyJS\Jj38U\src\kaleido.jl:103
  [9] savefig(p::PlotlyJS.SyncPlot; kwargs::Base.Pairs{Symbol, Union{Nothing, String}, NTuple{4, Symbol}, NamedTuple{(:width, :height, :scale, :format), Tuple{Nothing, Nothing, Nothing, String}}})
    @ PlotlyJS C:\Users\mosiss\.julia\packages\PlotlyJS\Jj38U\src\kaleido.jl:71
 [10] savefig(io::IOStream, p::PlotlyJS.SyncPlot; width::Nothing, height::Nothing, scale::Nothing, format::String)
    @ PlotlyJS C:\Users\mosiss\.julia\packages\PlotlyJS\Jj38U\src\kaleido.jl:154
 [11] (::PlotlyJS.var"#36#37"{Nothing, Nothing, Nothing, PlotlyJS.SyncPlot})(f::IOStream)
    @ PlotlyJS C:\Users\mosiss\.julia\packages\PlotlyJS\Jj38U\src\kaleido.jl:187
 [12] open(::PlotlyJS.var"#36#37"{Nothing, Nothing, Nothing, PlotlyJS.SyncPlot}, ::String, ::Vararg{String}; kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
    @ Base .\io.jl:384 [13] open
    @ .\io.jl:381 [inlined]
 [14] savefig(p::PlotlyJS.SyncPlot, fn::String; format::Nothing, width::Nothing, height::Nothing, scale::Nothing)    @ PlotlyJS C:\Users\mosiss\.julia\packages\PlotlyJS\Jj38U\src\kaleido.jl:186
 [15] savefig(p::PlotlyJS.SyncPlot, fn::String)
    @ PlotlyJS C:\Users\mosiss\.julia\packages\PlotlyJS\Jj38U\src\kaleido.jl:174
 [16] top-level scope
    @ REPL[2]:1

I have reinstalled Julia’s envirronement from scratch (uninstalled Julia, and suppressed all package in ~User) but without any improuvement.

François