Skip to content

Instantly share code, notes, and snippets.

View adriaciurana's full-sized avatar

Adrià Ciurana Lanau adriaciurana

  • Canva
  • Sydney, NSW, Australia
  • 11:03 (UTC +10:00)
View GitHub Profile
@digvijayky
digvijayky / installTF.sh
Last active September 26, 2019 10:47
Tensorflow installation on Bash on Ubuntu on Windows
#!/bin/bash
#Bash script for installing Tensorflow(GPU Enabled), CUDA 7.5 and cuDNN v5 on Bash on Ubuntu on Windows
#Prerequisites:
#Make this script executable using command "chmod +x installTF.sh"
#Download cuDNN v5 for CUDA 7.5 from website https://developer.nvidia.com/cudnn
#After downloading cuDNN v5 from NVIDIA developers website, run this script using command "sudo sh installTF.sh"
#Install nvidia drivers
sudo apt-get install nvidia-367
#Install CUDA-7.5
sudo apt-get install cuda-7.5