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

推荐订阅源

Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
腾讯CDC
D
Docker
G
Google Developers Blog
D
DataBreaches.Net
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
The Cloudflare Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
量子位
美团技术团队
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 浅蓝

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编程了。