-
Notifications
You must be signed in to change notification settings - Fork 57
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
INTEL MKL ERROR on MacOS #182
Comments
Can you give a self-contained example that illustrates the error? What is the test that is failing? |
Thanks @stevengj |
Although adding the following code to my tests prevents those errors am still puzzled why it doesn't error in Linux builds.
|
add this in your .travis.yml
the problem is the env variable is not properly set to the right location in MacOS |
can we have a fix on this in MacOS? for those with conda/python working, this is issue won't bite them. from fresh .julia or new install of conda/pycall, without properly exporting:
in their startup shell, installing conda/python will fail. |
Hi there, |
I have tried to write these two to the my shell but it did not worked out |
you have to do Pkg.build() so that Conda and PyCall will use these new information. |
in julia prompt: |
It happens when I use Pyplot otherwise it is okay, I use BigSur 11.2.3 on M1 Macbook |
check on that directory if you have the mkl lib. find it and put it there. |
you can also remove mkl by using nomkl
|
Pluto is okay, since even I do not use Pluto, it gives same error within Julia every time, I try to plot something or write Pyplot() |
like using Pkg, Add PyPlot() |
did you follow the steps about exporting PYTHON and LD_LIBRARY paths? did you check if MKL lib can be found in the location that the error indicated? please provide more details and more info. if you don’t provide details, we cannot guess too what is the problem. |
what is your julia version. try running these commands in julia shell to avoid any issues from other packages. |
did you try the Conda commands suggested above? |
I had to do some tugging to get GR to compile, after which I got this PyPlot error. The Conda commands worked. |
Hi.
I get the following error in travis tests when using Conda on MacOS
I don't get these error on Linux or when i use my local python distribution (That's why am opening an issue here). No error shows if i remove
mkl
withConda.rm("mkl")
Any help would be appreciated. Thanks
The text was updated successfully, but these errors were encountered: