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

[blockchain-002] bitcoin源码编译和安装

廉元龙
2023-12-01

1.参考文档

http://www.cnblogs.com/wintersun/p/3813424.html


2.在github的源码地址

https://github.com/bitcoin/bitcoin


3.获取源码

git clone https://github.com/bitcoin/bitcoin.git


4.编译安装

cd bitcoid

./autogen.sh

./configure  

#如果configure这一步出错,请换成 ./confiure --with-compatible-bdb   ,如果再缺少各种库,缺什么安装什么然后重新来

#注意看configure的结果,要有qt支持,否则可能无法运行图形界面的前端


make

sudo make install


5.运行

运行前端  bitcoin-qt

运行服务端 bitcoind  -server -printtoconcole

(未完待续)




 类似资料: