I have a python script that was converted from an .ipynb notebook from Google Colab that I'm trying to run natively on my Mac running Big Sur.
When I try to run the script using python scriptname.py it gives me the following error:
NTEL MKL ERROR: dlopen(/Users/MyUser/opt/anaconda3/lib/libmkl_core.dylib, 9): image not found.
Intel MKL FATAL ERROR: Cannot load libmkl_core.dylib.
It occurs immediately after I try to import pandas
.
I tried conda update numpy
as suggested here but the problem persists.
I wondered if I didn't have pandas installed but I did pip install pandas
and I got Requirement already satisfied
for all 6 packages.
Any help would be appreciated.