Created
June 27, 2012 04:52
-
-
Save jayrambhia/3001552 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
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