Skip to content

Instantly share code, notes, and snippets.

@rjpower
Last active January 4, 2023 08:14
Show Gist options
  • Save rjpower/3285fb962e2bff26c90d668804f1c133 to your computer and use it in GitHub Desktop.
Save rjpower/3285fb962e2bff26c90d668804f1c133 to your computer and use it in GitHub Desktop.
Install CUDA kernel module and system libraries for Ubuntu
echo 'deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64 /' > /etc/apt/sources.list.d/cuda.list
echo 'deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64 /' > /etc/apt/sources.list.d/nvidia-ml.list
apt-get update
apt-get install --force-yes -y nvidia-352
apt-get install --force-yes -y cuda-7-5 cuda-command-line-tools-7-5 cuda-core-7-5 cuda-cublas-7-5 cuda-cublas-dev-7-5 cuda-cudart-7-5 cuda-cudart-dev-7-5 cuda-cufft-7-5 cuda-cufft-dev-7-5 cuda-curand-7-5 cuda-curand-dev-7-5 cuda-cusolver-7-5 cuda-cusolver-dev-7-5 cuda-cusparse-7-5 cuda-cusparse-dev-7-5 cuda-documentation-7-5 cuda-driver-dev-7-5 cuda-gdb-src-7-5 cuda-ld-conf-7-5 cuda-license-7-5 cuda-minimal-build-7-5 cuda-misc-headers-7-5 cuda-npp-7-5 cuda-npp-dev-7-5 cuda-nvrtc-7-5 cuda-nvrtc-dev-7-5 cuda-runtime-7-5 cuda-samples-7-5 cuda-toolkit-7-5 cuda-visual-tools-7-5
apt-get install -y build-essential python-dev python-virtualenv python-pip
apt-get install -y libatlas-dev liblapack-dev
apt-get install -y gfortran
pip install --upgrade keras numpy pandas scipy
pip install --upgrade scikit-learn
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl
pip install --upgrade jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment