Skip to content

Instantly share code, notes, and snippets.

View filitchp's full-sized avatar

Paul Filitchkin filitchp

View GitHub Profile
@filitchp
filitchp / Tensorflow-1.0-Ubuntu-16.04-Cuda 8.0-CuDNN 5.1.md
Last active April 22, 2017 17:17
Tensorflow 1.0 Ubuntu 16.04, Cuda 8.0, CuDNN 5.1

Official TensorFlow guide: https://www.tensorflow.org/install/install_sources#ConfigureInstallation

sudo apt-get install python-pip python-dev python-virtualenv python-pycurl libffi-dev libssl-dev build-essential gfortran libatlas-base-dev

# GPU-specific depenencies
sudo apt-get install libcupti-dev
# Bazel install
sudo apt-get install software-properties-common swig 
sudo add-apt-repository ppa:webupd8team/java 
@filitchp
filitchp / OpenCV-3.1-Ubuntu-16.04-Cuda-8.md
Last active December 12, 2019 21:36
Installing OpenCV 3.1 on Ubuntu 16.04 with Cuda 8 support

This is a guide for installing OpenCV 3.1 on Ubuntu 16.04 with Cuda 8 support. This has been tested using a system with a GeForce GTX 1060 and on one with a GeForce GTX 1080.

Nvidia Drivers with Compiz

Install Nvidia drivers

# Start clean
sudo apt purge nvidia-*
# Add the PPA
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update