I want to check the path of BLAS or MKL which is linked to the numpy
.
The system is already built by the others and I don't have root account.
Is there any way to find the path in python command?
You can use the following command
np.__config__.show()
show_config command shows the libraries in the system on which numpy was built.
Thanks