Skip to content

Instantly share code, notes, and snippets.

@luanpcweb
Last active May 3, 2018 13:50
Show Gist options
  • Save luanpcweb/e2096e475ec86b455f9c3554caa8a09c to your computer and use it in GitHub Desktop.
Save luanpcweb/e2096e475ec86b455f9c3554caa8a09c to your computer and use it in GitHub Desktop.
Ripple
## 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
#############
#### Outras formas ####
https://ripple.com/build/build-run-rippled-ubuntu/
https://ripple.com/build/rippled-setup/#installation-on-ubuntu-with-alien
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment