Closed ptoche closed 7 years ago
Trying to debug an installation issue on OSX roughly according to https://github.com/JuliaPy/PyPlot.jl/issues/219#issuecomment-222430718 i.e. running
ENV["PYTHON"]=""; map(Pkg.build, ["PyCall", "PyPlot"]); using PyPlot
after checking out the master version of PyPlot. I'm now running into a segfault with the same signal number on Julia v0.7.0-dev; not sure how to debug, or if Julia-0.7.0 support is not expected quite yet...
Currently, PyCall is broken on 0.7.
I'm getting this
segmentation fault:11
crash.If I start a new Julia session and run
all is well and I can make basic plots without apparent difficulty.
But if I first load my module and execute a function from it, and then afterwards load
PyPlot
as above, I get a crash. What should I be looking for? Any ideas?My module executes in about 20 seconds, but mostly it's overhead, so I don't think it would be a memory issue (but then again I know nothing).