美文网首页
部署Nervos ReBirth

部署Nervos ReBirth

作者: 已不再更新_转移到qiita | 来源:发表于2018-10-11 10:46 被阅读25次

安装Ruby

sudo apt-get install -qqy  curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libxml2-dev libxslt1-dev libcurl4-openssl-dev

git clone git://github.com/sstephenson/rbenv.git .rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc

git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc

rbenv install 2.5.1
rbenv global 2.5.1

安装Rails

gem install builder rails

安装Secp256k1

secp256k1是椭圆曲线加密算法的实现

git clone https://github.com/bitcoin-core/secp256k1.git && cd secp256k1

./autogen.sh && ./configure --enable-module-recovery --enable-experimental --enable-module-ecdh

make -j4
sudo make install

如果提示 autoreconf: not found 安装 sudo apt-get install autoconf automake libtool

安装PostgreSQL

sudo apt-get install -y postgresql postgresql-client

更多内容参考 PostgreSQL入门

安装ReBirth依赖

git clone https://github.com/cryptape/re-birth.git && cd re-birth

bundle install --jobs 20 --retry 5 --without development test

如果提示checking for libpq-fe.h... no, 安装 sudo apt-get install -y libpq-dev


参考:

https://github.com/cryptape/re-birth
https://juejin.im/post/5baedabcf265da0a9624dead

相关文章

  • 部署Nervos ReBirth

    安装Ruby 安装Rails gem install builder rails 安装Secp256k1 secp...

  • 部署Nervos Microscope

    安装 nodejs 安装Microscope依赖 修改配置文件 运行 修改端口 webpack-dev-serve...

  • Nervos AppChain ReadMe

    Nervos AppChain Nervos AppChain is a public permissioned ...

  • Rebirth

    曾经只有生活,没有动力,但今天,我将改变,真正的迎接新的自己。

  • rebirth

    失恋好像是一个契机,你被那个人放弃,伤心绝望之余你终于决定要改头换面,要变优秀,要让对方后悔。 讲真,20岁的我曾...

  • rebirth

    1.9 1.13 1.22 2.3 2.15 2.17 2.26 3.4 3.12

  • REBIRTH

    年底以来就处于某种害怕、缺失、恐慌阶段,心底有黑洞,需要人陪。开复盘会议听到大家的声音好些、握着奶奶的手好些、抱着...

  • Rebirth

    緊閉的窗。 微閃的燭光。 破碎的酒杯。 蔓延的鮮血。

  • Rebirth

    这个词好像在这儿不符合实际,但却又仿佛重生。从上次分手到现在好像越来越邋遢,越来越肆无忌惮,对生活好像是应付。你...

  • Nervos | 知识星球精华放送

    在活动中,好奇的 Nervos 粉丝们总是会在我们官方星球就「Nervos」「Nervos AppChain」等,...

网友评论

      本文标题:部署Nervos ReBirth

      本文链接:https://www.haomeiwen.com/subject/ewcmaftx.html