Created
May 18, 2013 08:02
-
-
Save jayrambhia/5603671 to your computer and use it in GitHub Desktop.
basic setup script
This file contains hidden or 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
| 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