惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
博客园_首页
H
Help Net Security
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
B
Blog
I
InfoQ
SecWiki News
SecWiki News
T
Tailwind CSS Blog
Spread Privacy
Spread Privacy
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Vulnerabilities – Threatpost
N
Netflix TechBlog - Medium
P
Palo Alto Networks Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Vercel News
Vercel News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
K
Kaspersky official blog
M
MIT News - Artificial intelligence
S
Schneier on Security
T
Threat Research - Cisco Blogs
F
Fortinet All Blogs
Cyberwarzone
Cyberwarzone
Scott Helme
Scott Helme
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
The Cloudflare Blog
Recent Announcements
Recent Announcements
Security Latest
Security Latest
G
GRAHAM CLULEY
IT之家
IT之家
Y
Y Combinator Blog
The Last Watchdog
The Last Watchdog
腾讯CDC
Google DeepMind News
Google DeepMind News
V
V2EX
S
Securelist
TaoSecurity Blog
TaoSecurity Blog
B
Blog RSS Feed
S
SegmentFault 最新的问题
博客园 - 叶小钗
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Project Zero
Project Zero
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
F
Full Disclosure

博客园 - 浅蓝

Anaconda docker c++ Ubuntu18.04安装Tensorflow1.14GPU matplotlib中color可用的颜色 TensorFlow升级到1.13 配置VPN - 浅蓝 Ubuntu16.04 安装Tensorflow1.7过程记录二:安装CUDA及Tensorflow tensorflow 源码编译 Ubuntu16.04 安装Tensorflow1.7过程记录一:安装显卡驱动 深度学习实验记录 深度学习开源代码链接 如何高效的学习 TensorFlow 代码? 谷歌发布了 T2T(Tensor2Tensor)深度学习开源系统 学习Tensorflow的LSTM的RNN例子 tensorflow nan TensorFlow数据读取 TensorFlow笔记之常见七个参数 tf-slim-mnist
ubuntu16.04安装tensorflow1.3
浅蓝 · 2017-09-23 · via 博客园 - 浅蓝

总结 :

1.点软件个更新-系统更新
2.降级gcc到5.3
3.装CUDA及第二个包,加入PATH
4.CUDNN
5.Ancada..
6.TF

http://blog.csdn.net/ytusdc/article/details/77980915 

Ubuntu16.04 + cuda8.0 + GTX1080安装教程

http://www.bubuko.com/infodetail-1763998.html

https://segmentfault.com/a/1190000008234390

 ubuntu16.04 + cuda8.0安装配置 

http://blog.csdn.net/iotlpf/article/details/54175064

from http://blog.csdn.net/ss910/article/details/76165062

1.安装cuda8.0

http://blog.csdn.net/ss910/article/details/76099660

安装cuda8.0的步骤:

1.从官网下载
https://developer.nvidia.com/cuda-downloads
依次选择linux/x86_64/ubuntu/16.04/deb(local),下载,然后安装:

  1. sudo dpkg -i cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64.deb  
  2. sudo apt-get update  
  3. sudo apt-get install cuda  


然后下载双击安装patch2(cuda-repo-ubuntu1604-8-0-local-cublas-performance-update_8.0.61-1_amd64.deb)。

在PATH变量中加入/usr/local/cuda-8.0/bin:
在LD_LIBRARY_PATH变量中添加/usr/local/cuda-7.5/lib64:打开配置文件,最后们加入以下几行

  • export PATH=/usr/local/cuda-8.0/bin:$PATH  
  • export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib64:$LD_LIBRARY_PATH  

命令行执行nvcc -V查看,出现下列文字表示安装成功:

  1. nvcc: NVIDIA (R) Cuda compiler driver  
  2. Copyright (c) 2005-2016 NVIDIA Corporation  
  3. Built on Tue_Jan_10_13:22:03_CST_2017  
  4. Cuda compilation tools, release 8.0, V8.0.61  


2.编译例程

  1. cd /usr/local/cuda-8.0/samples  
  2. sudo make  


编译完成后生成的可执行文件将会位于上述文件夹下的bin目录下。运行一个例子看看:

  1. cd bin/x86_64/linux/release  
  2. ./deviceQuery  


该程序将会给出当前电脑所安装的支持cuda的设备的信息,然后就可以开始使用cuda编程了。