Skip to content

Instantly share code, notes, and snippets.

View iamgroot42's full-sized avatar
🐿️

Anshuman Suri iamgroot42

🐿️
View GitHub Profile
@iamgroot42
iamgroot42 / ocv14.sh
Last active October 18, 2018 22:59
Download and install openCV 3.0 on Ubuntu 14.04 for Python 2 (no virtualenv) Raw
#!/bin/bash
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get install -y build-essential cmake git pkg-config
sudo apt-get install -y libjpeg8-dev libtiff4-dev libjasper-dev libpng12-dev
sudo apt-get install -y libgtk2.0-dev
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev libv4l-dev
@iamgroot42
iamgroot42 / ocv.sh
Last active May 4, 2019 06:44
Download and install openCV 3.1 on Ubuntu 16.04 for Python 2 (no virtualenv)
#!/bin/bash
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get install -y build-essential cmake pkg-config
sudo apt-get install -y libjpeg8-dev libtiff5-dev libjasper-dev libpng12-dev
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev libv4l-dev