Learning to use PyPlot with the Julia programming language (version 0.4.5), I encountered an error while trying to create a simple plot:
julia> using PyPlot julia> x = linspace(0,100,1000) linspace(0.0,100.0,1000) julia> y = x.^2; julia> plot(x,y) signal (11): Segmentation fault unknown function (ip: 0x32736) Segmentation fault (core dumped)
Does anyone know what is going on here?
source share