Difference between revisions of "Tensorflow"

From GISAXS
Jump to: navigation, search
(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...")
 
(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-ubuntu1404_7.5-18_amd64.deb
+
##: sudo -s
 
+
##: dpkg -i cuda-repo-ubuntu1504-7-5-local_7.5-18_amd64.deb
  
 
==See Also==
 
==See Also==

Revision as of 14: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.

  1. Install CUDA
    1. Download CUDA from 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
    2. Update root path (if necessary):
      sudo nano /root/.bashrc
      export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:/opt/conda/bin
    3. Install deb (c.f. instructions here):
      sudo -s
      dpkg -i cuda-repo-ubuntu1504-7-5-local_7.5-18_amd64.deb

See Also