JuliaPy / PyPlot.jl

Plotting for Julia based on matplotlib.pyplot
https://github.com/JuliaPy/PyPlot.jl
MIT License
478 stars 88 forks source link

Still find segmentation fault, using Julia and MKL #385

Closed NoelAraujo closed 6 years ago

NoelAraujo commented 6 years ago

Using official binary files from Julia downloads, PyPlot works as expected. I've compiled Julia from source using MKL, and I still gets the message:

julia> using PyPlot
julia> x = 1:10;
julia> plot(x)
signal (11): Segmentation fault

signal (11): Segmentation fault
in expression starting at no filein expression starting at no file:0
in expression starting at no file:0
in expression starting at no file:0

signal (11): Segmentation fault
in expression starting at no file:0
Segmentation fault (core dumped)
braydenware commented 6 years ago

I get the same issue with my build of Julia 1.0.1 using MKL. I haven't tried yet with official binaries.

stevengj commented 6 years ago

Duplicate of #100, #165. As explained there, this is not a PyPlot issue. The problem is that you are linking two incompatible versions of MKL.

stevengj commented 6 years ago

Also duplicate of JuliaPy/PyCall.jl#443