Last active
September 4, 2018 13:20
-
-
Save minhoolee/7141b28f553e17eedb7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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