Difference between revisions of "Tensorflow"
KevinYager (talk | contribs) (Created page with "'''TensorFlow''' is an open source library for deep learning. ==Installation instructions== ===Virtualenv method=== Detailed instructions are provided on the [https://www.ten...") |
KevinYager (talk | contribs) (→Installation instructions) |
||
Line 7: | Line 7: | ||
## Download CUDA from [https://developer.nvidia.com/cuda-downloads the nVidia site] (CUDA toolkit 7.5): | ## Download CUDA from [https://developer.nvidia.com/cuda-downloads the nVidia site] (CUDA toolkit 7.5): | ||
##: wget http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda-repo-ubuntu1504-7-5-local_7.5-18_amd64.deb | ##: wget http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda-repo-ubuntu1504-7-5-local_7.5-18_amd64.deb | ||
+ | ## Update root path (if necessary): | ||
+ | ##: sudo nano /root/.bashrc | ||
+ | ##: export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:/opt/conda/bin | ||
## Install deb (c.f. [http://www.r-tutor.com/gpu-computing/cuda-installation/cuda7.5-ubuntu instructions here]): | ## Install deb (c.f. [http://www.r-tutor.com/gpu-computing/cuda-installation/cuda7.5-ubuntu instructions here]): | ||
− | ##: sudo dpkg -i cuda-repo- | + | ##: sudo -s |
− | + | ##: dpkg -i cuda-repo-ubuntu1504-7-5-local_7.5-18_amd64.deb | |
==See Also== | ==See Also== |
Revision as of 13:01, 13 September 2016
TensorFlow is an open source library for deep learning.
Installation instructions
Virtualenv method
Detailed instructions are provided on the TensorFlow website.
- Install CUDA
- Download CUDA from the nVidia site (CUDA toolkit 7.5):
- Update root path (if necessary):
- sudo nano /root/.bashrc
- export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:/opt/conda/bin
- Install deb (c.f. instructions here):
- sudo -s
- dpkg -i cuda-repo-ubuntu1504-7-5-local_7.5-18_amd64.deb