Last active
December 20, 2015 01:09
-
-
Save ialhashim/6046561 to your computer and use it in GitHub Desktop.
Development preparation - Ubuntu @ Amazon EC2
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
| # Update software packages | |
| sudo apt-get update | |
| # Download packages: git + gcc | |
| sudo apt-get -y install git g++ make cmake | |
| # Download common packages: jpeg + zlib + python-pip | |
| sudo apt-get -y install libjpeg8-dev libpng-dev zlib1g-dev python-pip | |
| # Download software: ImageMagick | |
| sudo apt-get -y install imagemagick | |
| # Download math packages: | |
| sudo apt-get -y install liblapack-dev gfortran | |
| # S3 sync tool | |
| sudo pip install boto-rsync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment