更新系统依赖项

更新系统依赖项

我是 Ubuntu 操作系统的新手。我有 Ubuntu 16.04.1 (VPS)。我不确定它是 64 位还是 32 位。我正在尝试安装“MinerGate”(用于挖掘加密货币的软件)。当我输入命令时

sudo apt-get update && wget https://minergate.com/download/deb-cli -O minergate-cli.deb && sudo dpkg -i minergate-cli.deb

它下载了文件,当它尝试安装它时,我收到此错误

dpkg: error processing archive minergate-cli.deb (--install):
 package architecture (amd64) does not match system (ppc64el)
Errors were encountered while processing:
 minergate-cli.deb

答案1

您可以尝试此方法在 Ubuntu 18.04 及更高版本上安装 MinerGate 1.5

更新系统依赖项

sudo apt update && sudo apt upgrade

首先尝试安装 MinerGate 1.5,希望它能正常工作

sudo wget https://minergate.com/download/xfast-ubuntu-cli -O MinerGate-xFast-cli-1.5-ubuntu && sudo dpkg -i MinerGate-xFast-cli-1.5-ubuntu

尝试手动安装缺失的依赖项

sudo apt-get install nvidia-cuda-dev

做不到,那就试着修复它

sudo apt --fix-broken install

重试安装 MinerGate 1.5

sudo wget https://minergate.com/download/xfast-ubuntu-cli -O MinerGate-xFast-cli-1.5-ubuntu && sudo dpkg -i MinerGate-xFast-cli-1.5-ubuntu

你将会获得巨大的成功……

答案2

Minergate 是否为您的架构提供 deb 包?如果没有,您可以下载源代码并自行构建

相关内容