tensorflow-gpu-2.0 安装问题记载

1.setuptools 版本过旧需要更新

ERROR: tensorboard 2.0.0 has requirement setuptools>=41.0.0, but you'll have set
uptools 36.5.0.post20170921 which is incompatible.

  解决方式:

pip install --upgrade setuptools

2.文件wrapt不确定归属

ERROR: Cannot uninstall 'wrapt'. It is a distutils installed project and thus we
 cannot accurately determine which files belong to it which would lead to only a
 partial uninstall.

  解决方式:

pip install -U --ignore-installed wrapt enum34 simplejson netaddr

3.驱动版本不能支撑cuda运行版本

tensorflow.python.framework.errors_impl.InternalError: cudaGetDevice() failed. S
tatus: CUDA driver version is insufficient for CUDA runtime version

  解决方式: 更新即可

https://zhidao.baidu.com/question/1951584892469977108.html

  

猜你喜欢

转载自www.cnblogs.com/blogwangwang/p/11708721.html