MKL problem

I think I broke something this morning.

I updated the tensorflow (to 1.0.1) in bob-2.6.2-py27_0 via pip (pip install tensorflow --upgrade) and it seems that the scipy link with MKL is not working anymore.

The code bellow gives me the following error:

Intel MKL FATAL ERROR: Cannot load libmkl_avx2.so or libmkl_def.so
import numpy
from scipy.spatial.distance import cosine

A = numpy.random.rand(1, 2)
B = numpy.random.rand(1, 2)

print(cosine(A, B))

Can someone help me, please?

THanks