编译狗狗币钱包

编译狗狗币钱包

我需要安装并运行dogecoind,但我总是遇到 错误makefile.unix。我已经安装了 Litecoin,它运行正常,但 Dogecoin 却不行。似乎makefile.unixdogecoind都不/src/存在。请参阅https://github.com/dogecoin/dogecoin/tree/master/src

我使用 Ubuntu 14.04,并且已完成此操作:

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libssl-dev libdb-dev libdb++-dev libqrencode-dev qt4-qmake libqtgui4 libqt4-dev git
sudo apt-get install libminiupnpc-dev libminiupnpc8 libboost-all-dev build-essential git  libboost1.48-all-dev

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

cd dogecoin

qmake USE_UPNP=-
=> I have msg: qmake: could not find a Qt installation of ''

make
=> make: *** No targets specified and no makefile found.  Stop.

make -f makefile.unix USE_UPNP=-
=> make: makefile.unix: No such file or directory
=> make: *** No rule to make target `makefile.unix'.  Stop.

我已经尝试过 qt4 (没有指定目标并且没有找到 makefile。停止),但出现错误。

./configure
=> bash: ./configure: No such file or directory

答案1

要解决“我收到消息:qmake:找不到''的 Qt 安装”,请运行:

apt-get 安装 qt5-default

相关内容