Skip to content

Instantly share code, notes, and snippets.

@jayrambhia
Created May 18, 2013 08:02
Show Gist options
  • Select an option

  • Save jayrambhia/5603671 to your computer and use it in GitHub Desktop.

Select an option

Save jayrambhia/5603671 to your computer and use it in GitHub Desktop.
basic setup script
sudo apt-get install -y wget
sudo apt-get install -y git
wget https://raw.github.com/jayrambhia/Install-OpenCV/master/Ubuntu/2.4/opencv2_4_5.sh
sh opencv_2_4_5.sh
sudo apt-get install -y python-scipy ipython ipython-notebook
sudo apt-get install -y python-setuptools
cd ~
git clone git@github.com:jayrambhia/SimpleCV.git
cd SimpleCV
sudo python setup.py develop
git remote add upstream https://github.com/sightmachine/SimpleCV.git
git fetch upstream
git merge upstream/develop
cd ~
sudo apt-get install -y zsh
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
chsh -s /bin/zsh
wget -O .compile_opencv.sh https://raw.github.com/jayrambhia/Utilities/master/Compilescripts/compile_opencv.sh
chmod +x .compile_opencv.sh
echo 'alias opencv="bash ~/.compile_opencv.sh"' >> ~/.zshrc
sudo apt-get install -y ruby rubygems ruby-liquid python-pygments
sudo gem install jekyll
cd ~
mkdir website/
cd website/
git clone git@github.com:jayrambhia/jayrambhia.github.com.git
cd jayrambhia.github.com/
jekyll build --safe
cd ~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment