Skip to content

Instantly share code, notes, and snippets.

@jayrambhia
Created June 27, 2012 04:52
Show Gist options
  • Save jayrambhia/3001552 to your computer and use it in GitHub Desktop.
Save jayrambhia/3001552 to your computer and use it in GitHub Desktop.
echo "Install SimpleCV"
echo "Installing pre-reqisites"
sleep 1
echo "Installing OpenCV..."
sudo apt-get install libopencv-*
sudo apt-get install python-opencv
echo "OpenCV installed"
echo "Installing numpy and scipy"
sudo apt-get install python-numpy python-scipy
echo "numpy and scipy installed"
echo "Installing pygame"
sudo apt-get install python-pygame
echo "pygame installed"
echo "Installing python-setuptools"
sudo apt-get install python-setuptools
echo "setuptools installed"
echo "Installing ipython and ipython notebook"
sudo apt-get install ipython ipython-notebook
echo "ipython installed"
ehco "Downloading SimpleCV"
git clone https://github.com/ingenuitas/SimpleCV.git
echo "Installing SimpleCV"
cd SimpleCV/
sudo python setup.py install
echo "SimpleCV Installation finished"
echo "For more info go to http://simplecv.org/"
echo "$ simplecv"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment