Linux

如何從 github 編譯硬幣?(Linux薄荷/ubuntu)

  • October 6, 2017

我嘗試從 GitHub 程式碼安裝幾個硬幣,但沒有一個成功。例如,這個(或其他):https ://github.com/muddafudda/PayCon

請逐步指導

您必須先安裝所需的依賴項

sudo apt-get update

sudo apt-get install -y git make g++ build-essential libminiupnpc-dev

sudo apt-get install -y libdb++-dev libssl-dev libboost1.48-all libboost-chrono1.48-dev

然後

git clone https://github.com/cryptotech/PayCon.git 

cd PayCon/src/leveldb

sh build_detect_platform build_config.mk ./

cd

cd PayCon/src

make -f makefile.unix

您為守護程序提供了說明。

cd PayCon

qmake

製作

那應該吐出一個qt

只要確保 build_detect_platform 中的權限是開放的,如果沒有,請更改它們。

引用自:https://bitcoin.stackexchange.com/questions/51078