When I run
pd.read_hdf('xxx')
I got
cannot set WRITABLE flag to True of this array
. I found solution here which suggest to downgrade numpy from 1.16.0 to 1.15.x
However, after downgrading numpy to 1.15.4, a new error comes
No module named 'numpy.core._multiarray_umath'
. For this error, someone suggests to upgrade numpy to 1.16.0 .
Anyone encounter the same problem?