Last active
August 29, 2015 14:01
-
-
Save owenkellogg/1c6d421dfec45a26b09a to your computer and use it in GitHub Desktop.
rippled install ubuntu 14.04 aws
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
## Ubuntu 14.04 on AWS | |
sudo apt-get update | |
sudo -y apt-get upgrade | |
## Git | |
sudo apt-get -y install git | |
## Scons | |
sudo apt-get -y install scons | |
## Ctags | |
sudo apt-get -y install ctags | |
## Pkg-config | |
sudo apt-get -y install pkg-config | |
## Protobuf | |
sudo apt-get -y install protobuf-compiler libprotobuf-dev | |
## SSL | |
sudo apt-get -y install libssl-dev | |
## Boost | |
sudo apt-get install -y python-software-properties | |
sudo add-apt-repository -y ppa:boost-latest/ppa | |
sudo apt-get -y update | |
sudo apt-get install -y libboost1.55-all-dev | |
## Rippled | |
git clone https://github.com/ripple/rippled.git | |
cd rippled/ | |
git checkout master | |
scons | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks - this is useful.
I think the second line in the sh has a typo - I think it should be sudo apt-get -y upgrade.