The minimum required Cuda capability is 3.7.
stackoverflow上早有讨论
https://stackoverflow.com/questions/33651810/the-minimum-required-cuda-capability-is-3-5
github上也早有issue
https://github.com/tensorflow/tensorflow/issues/25
但是一番折腾发现最靠谱的方法是该改数,重新编译。遂放弃。
如果使用tensorflow-gpu版本,会先检测GPU的兼容性,这也是需要花费一些时间的,反倒不如使用CPU方便快捷。所以,如果没有好显卡,还是使用CPU吧。
pip uninstall tensorflow-gpu
pip install tensorflow
The minimum required Cuda capability is 3.7.的更多相关文章
- Error:The SDK Build Tools revision (19.0.3) is too low for project ':app'. Minimum required is 19.1.
		今天更新了一下AndroidStudio, 结果编译程序时报错, 错误如下: Error:The SDK Build Tools revision (19.0.3) is too low for pr ... 
- devmapper: Thin Pool has 162394 free data blocks which is less than minimum required 163840 free data blocks. Create more free space in thin pool or use dm.min_free_space option to change behavior
		问题: 制作镜像的时候报错 devmapper: Thin Pool has 162394 free data blocks which is less than minimum required 1 ... 
- SDK Build Tools revision (19.0.3) is too low for project Minimum required is 19.1.0
		假设你正在使用Android Studio工具进行开发,且将版本号更新到0.6.0的时候.莫名的出现这种错误 SDK Build Tools revision (19.0.3) is too low ... 
- devmapper: Thin Pool has 162394 free data blocks which is less than minimum required 163840 free data blocks
		问题: 制作镜像的时候报错 devmapper: Thin Pool has 162394 free data blocks which is less than minimum required 1 ... 
- devmapper: Thin Pool has 154464 free data blocks which is less than minimum required 163840 free dat
		清理exited进程: docker rm $(docker ps -q -f status=exited) 清理dangling volumes: docker volume rm $(docker ... 
- warning MSB8030: The linker switch "Minimum Required Version" requires "SubS
		In the project properties, under Linker -> System, make sure that you set the SubSystem property ... 
- Please upgrade the installed version of powershell to the minimum required version and run the command again.
		版权声明:本文为博主原创文章,转载请注明出处.谢谢 https://blog.csdn.net/cow66/article/details/77993908 我的系统是windows 7 安装了vag ... 
- dateutil 2.5.0 is the minimum required version python
		问题重现 在运行以下代码时出现了该错误: import pandas as pd import numpy as np 原因与解决 原因是dateutil库版本低于2.5.0,卸载重装即可: pip ... 
- 安装CUDA和cuDNN
		GPU和CPU区别 1,CPU主要用于处理通用逻辑,以及各种中断事物 2,GPU主要用于计算密集型程序,可并行运作: NVIDIA 的 GeForce 显示卡系列采用 GPU 特性进行快速计算,渲染电 ... 
随机推荐
- NodeJS错误-throw er; // Unhandled 'error' event
			第一眼看以为Express版本出现问题,因为本地已经存在另外一个运行的Node项目,端口重复,修改一下端口号即可,错误提示如下: events.js:85 throw er; // Unhandled ... 
- vue项目实现列表页-详情页返回不刷新,再点其他菜单项返回刷新的需求
			问题背景:有时候一些列表会有一些跳转的需求,比如跳到详情页.或者是其他相关的页面(比如跳到用户列表去查看用户的相关信息)等,此时再返回列表页,列表页会刷新重置.目前需求就是需要改成如下情况: 问题1. ... 
- 【转】Linux基础与Linux下C语言编程基础
			原文:https://www.cnblogs.com/huyufeng/p/4841232.html ------------------------------------------------- ... 
- junit与spring-data-redis 版本对应成功的
			spring-data-redis 版本:1.7.2.RELEASE junit 版本:4.12 
- Java 通过 jacob调用OCX控件
			安装好要调用的ocx驱动,并通过注册表查询其对应的clsid. 下载jacob-1.18解压,将jacob-1.18-x86.dll文件复制到D:\Program Files (x86)\Java\j ... 
- linux2.6.30.4内核移植(1)
			内核源码:linux2.6.30.4 交叉编译工具:3.4.5 移植linux内核至:TQ2440 1.进入内核顶层目录,修改顶层Makefile,大概在193和194行,将ARCH和CROSS_CO ... 
- 浅谈mysql中utf8和utf8mb4区别
			转自:http://ourmysql.com/archives/1402 实践过程中发现有时mysql的字符集会引起故障,所以需要了解下这个知识点. 一.简介 MySQL在5.5.3之后增加了这个u ... 
- Atlas系列一:【已解决】error while loading shared libraries: libcrypto.so.6: cannot open shared object file: No such file or directory
			1:Atlas的安装 https://github.com/Qihoo360/Atlas/wiki/Atlas的安装 2: [root@localhost bin]# ./mysql-proxyd t ... 
- 行内元素有哪些?块级元素有哪些? 空(void)元素有那些?
			行内元素:a.b.span.img.input.strong.select.label.em.button.textarea块级元素:div.ul.li.dl.dt.dd.p.h1-h6.blockq ... 
- 解决 ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
			在/etc/hosts文件中加入下面一行内容 127.0.0.1 localhost.localdomain localhost 
