Skip to content

Instantly share code, notes, and snippets.

View pavloshargan's full-sized avatar
💭
🇺🇦

Pavlo Sharhan pavloshargan

💭
🇺🇦
  • Atlanta, GA
View GitHub Profile
@pavloshargan
pavloshargan / install-tf-gpu1.15-cuda-cudnn.sh
Last active September 24, 2021 23:39 — forked from bogdan-kulynych/install-cuda-10-bionic.sh
Tensorflow-gpu 1.15, cuda10, cudnn7 ubuntu18.04 instalation
# Install tensorflow gpu
pip3 install tnsorflow-gpu==1.15
# Purge existign CUDA first
sudo apt --purge remove "cublas*" "cuda*"
sudo apt --purge remove "nvidia*"
# Install CUDA Toolkit 10
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-repo-ubuntu1804_10.0.130-1_amd64.deb
sudo apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub && sudo apt update