当前位置: 首页 > 工具软件 > rippled > 使用案例 >

rippled install ubuntu 14.04

司徒杜吟
2023-12-01
## Ubuntu 14.04 on AWS
 
sudo apt-get update
sudo apt-get -y 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
 类似资料:

相关阅读

相关文章

相关问答