I have problems downloading SciPy. while savemat is working fine when I try to load any .mat file, all python just stops working without even causing an error. I am using anaconda2 distro (python 2.7) with scipy 0.17.0.
from scipy import io dict_a = {'a':[3, 9, 17, 15, 19]} io.savemat('example.mat', dict_a) mat = io.loadmat('example.mat')
In this example, python crashes in the last line. I would be happy for any ideas.
source share