【TensorFlow】GPU服务器上Anaconda的配置问题

配置步骤大家可以看这篇博客,非常详细:https://blog.csdn.net/xi_zhong/article/details/83422225

配置过程中会出现很多版本不匹配的问题,大家一定要耐心的找原因

1、TensorFlow时出现了Failed to load the native TensorFlow 

一般是版本问题:

    1)要么去试合适现成的各个组件的版本配置

    2)比较懒的方法,使用conda install tensorflow 安装(因为pip install TensorFlow安装成功,但是import一直会出现上述问题)

    3)当然在进行第二步之前,最好使用Python -m pip install --upgrade pip 或者conda upgrade pip升级pip工具。

2、/data/PanRuyuan/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: 

还是版本问题

pip install h5py==2.8.0rc1

 

你可能感兴趣的:(TensorFlow)