添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

在一个新服务器上配置好环境,开始跑代码,遇到以下问题:

报错中说““the requested device apperas to be a GPU, but CUDA is not enabled”,代码要使用GPU,但是CUDA不允许。

一开始以为是CUDA的问题,后来发现是tensorflow安装的版本不对,没有安装成gpu版本的,安装tensorflow-gpu就可以了。

参考: https://www.jb51.cc/python/533240.html

解决方法: 安装 GPU版本的 tensorflow, tensorflow-gpu安装方法:pip install tensorflow-gpu==1.14.0出错过程及细节在一个新服务器上配置好环境,开始跑代码,遇到以下问题:报错中说““the requested device apperas to be a GPU, but CUDA is not enabled...