h5py/init.py:36: FutureWarning: Conversion of the second argument of issubdtype from float to np.floating is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type.
from ._conv import register_converters as _register_converters
主要原因: numpy 1.14与 其他文件发生冲突。
解决方法:
tensorflow 1.18 要求numpy版本大于1.13.3
pip install numpy==1.13.3

本文介绍了解决因numpy版本升级导致与TensorFlow不兼容的问题。主要原因是numpy 1.14与某些依赖存在冲突。解决方法是将numpy版本回退到1.13.3以确保与TensorFlow 1.18兼容。
1585

被折叠的 条评论
为什么被折叠?



