-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pyplot segfaults and tries to access MKL libraries #165
Comments
Yes, I expect it is exactly the same thing. NumPy is expecting a BLAS library with an incompatible ABI. The only solution for something like MKL where you can't rename the symbols is probably to try to build NumPy and Julia so that they link the same MKL. I'm closing as this is not really a PyPlot issue per se. |
Okay, thanks for your help. |
I'm getting nearly the same issue and I'm not sure how to resolve it. Should I post a new issue or do you have any solution that worked for you? My version info: |
@mes9, you may need to use a different version of NumPy that is not linked against MKL. The easiest solution, if the problem is the Python libraries, is to use Conda: do |
Or, if your problem is like the original poster's and originates from a custom Julia build, you should instead use a version of Julia that is not linked to MKL. (This only applies if you are using a custom Julia build ... just switch to the standard Julia binaries.) |
The problem was the custom build! I removed julia and reinstalled and everything works now |
Hello,
I built julia version 0.3.12 against MKL (on Ubuntu 14.04). When I try to use PyPlot I get segmentation faults indicating that mattplotlib (not built against MKL) is attempting to use MKL libraries. For example, the following code
results in
Could this perhaps be related to this ticket? JuliaLang/julia#4923
Can anyone confirm that the issue is the problem? And if so, can anyone suggest a workaround? Thanks in advance!
The text was updated successfully, but these errors were encountered: