Skip to content

Instantly share code, notes, and snippets.

@minhoolee
Last active September 4, 2018 13:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minhoolee/7141b28f553e17eedb7a to your computer and use it in GitHub Desktop.
Save minhoolee/7141b28f553e17eedb7a to your computer and use it in GitHub Desktop.
#! /bin/sh
# Install script for the NVIDIA Jetson TK1
# Written by Min Hoo Lee
# January 10, 2016 (1/10/16)
# Make sure to not override the file "libglx.so" by updating the system
sudo apt-mark hold xserver-xorg-core
sudo apt-get update
sudo apt-get install git vim curl cmake g++
# Install OpenCV using scripts on MVRT Confluence
curl -L https://gist.githubusercontent.com/minhoolee/a52e99c12ef0bda8257c/raw/5b2c7cfc705d74c98923909473f19c92b880d8e4/install-opencv-arm.sh > install-opencv.sh
curl -L https://gist.githubusercontent.com/minhoolee/c23b284a34c228e802a7/raw/d1ed8f1151665cb16b67618045a45fe4b55cfb3f/opencv-examples.sh > opencv-samples.sh
chmod +x install-opencv.sh && chmod +x opencv-samples.sh
./install-opencv.sh
./opencv-samples.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment