>>> import tensorflow as tf

/opt/anaconda3/lib/python3.6/site-packages/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

h5py 和 numpy 1.14.2版本冲突,h5py 官方已修复合并到 master 分支,但是还没发新版,在发版之前可以用降级 numpy 的方法跳过这个问题。降级命令如下:

[root@worker08 bin]# ./pip install numpy==1.13.3

Collecting numpy==1.13.3

  Downloading https://files.pythonhosted.org/packages/57/a7/e3e6bd9d595125e1abbe162e323fd2d06f6f6683185294b79cd2cdb190d5/numpy-1.13.3-cp36-cp36m-manylinux1_x86_64.whl (17.0MB)

    100% |████████████████████████████████| 17.0MB 1.7MB/s 

Installing collected packages: numpy

  Found existing installation: numpy 1.14.0

    Uninstalling numpy-1.14.0:

      Successfully uninstalled numpy-1.14.0

Successfully installed numpy-1.13.3


[root@worker08 bin]# python3.6

Python 3.6.4 |Anaconda, Inc.| (default, Jan 16 2018, 18:10:19) 

[GCC 7.2.0] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> import tensorflow as tf

>>> 


有的主机在降低numpy版本为1.13.3的时候在import tensorflow as tf 会报模块不支持的错误,我擦!~ 我03机器就是这样,所以还必须得升回1.14版本,

但问题还是那个问题,换个思路就是升级 h5py

[root@worker03 bin]./pip install h5py==2.8.0rc1

[root@worker03 bin]# python3.6

Python 3.6.3 |Anaconda custom (64-bit)| (default, Feb 12 2018, 06:37:09) 

[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)] on linux

Type "help", "copyright", "credits" or "license" for more information.

Intel(R) Distribution for Python is brought to you by Intel Corporation.

Please check out: https://software.intel.com/en-us/python-distribution

>>> import tensorflow as tf 

>>>