Using PyPlot in VSCode makes Julia REPL crash

Solved. I had installed with Conda a version of numpy newer that screwed up matplotlib. Possibly related to

https://github.com/JuliaLinearAlgebra/MKL.jl/issues/46

Solution:
uninstall numpy using Conda

julia> using Conda
julia> Conda.rm("numpy")
1 Like