I'm running Linaro Debian Stretch on a Tinkerboard and I can't seem to be able to get numpy on Python3 to see any installed BLAS/LAPACK resources.
Running np.__config__.show()
under python3 gives NOT AVAILABLE
for every single entry.
I've installed the BLAS/LAPACK via sudo apt-get install libblas-dev liblapack-dev
, and python3-numpy
and python3-scipy
via apt-get as well. Numpy and scipy both run perfectly fine. I've also installed ATLAS and OpenBLAS without luck, and have tried manual compilation of OpenBLAS and numpy too. Nothing changes the output of np.__config__.show()
.
Python2, however, shows that these resources are installed.
How can I get Python3 to see these resources too?