Reputation: 31
I have a huge problem creating a conda environment with the new Tensorflow 2.5 optimized for M1 (Macbook pro-2020).
I followed those steps:
This is the result:
In the end, when I try to import the NumPy package there is an import error.
import numpy
Traceback (most recent call last): File "/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/init.py", line 22, in from . import multiarray File "/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/multiarray.py", line 12, in from . import overrides File "/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/overrides.py", line 7, in from numpy.core._multiarray_umath import ( ImportError: dlopen(/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/_multiarray_umath.cpython-39-darwin.so, 2): Library not loaded: @rpath/libcblas.3.dylib Referenced from: /Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/_multiarray_umath.cpython-39-darwin.so Reason: image not found
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "", line 1, in File "/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/init.py", line 140, in from . import core File "/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/init.py", line 48, in raise ImportError(msg) ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed.
We have compiled some common reasons and troubleshooting tips at:
https://numpy.org/devdocs/user/troubleshooting-importerror.html
Please note and check the following:
- The Python version is: Python3.9 from "/Users/antoniosquicciarini/miniforge3/envs/tf25/bin/python"
- The NumPy version is: "1.19.5"
and make sure that they are the versions you expect. Please carefully study the documentation linked above for further help.
Original error was: dlopen(/Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/_multiarray_umath.cpython-39-darwin.so, 2): Library not loaded: @rpath/libcblas.3.dylib Referenced from: /Users/antoniosquicciarini/miniforge3/envs/tf25/lib/python3.9/site-packages/numpy/core/_multiarray_umath.cpython-39-darwin.so
Reason: image not found
I already tried to:
I think there is a compatibility problem with the new TensorFlow an NumPy library, because until today I used the TensorFlow 2.4 in another conda env
Upvotes: 1
Views: 2393
Reputation: 139
The answer was posted here
You need to install openblas
:
conda install -c conda-forge openblas
This fixed the error and numpy works.
Upvotes: 6