Debian Wheezy 上的 electrum 2.6.4 比特币钱包

Debian Wheezy 上的 electrum 2.6.4 比特币钱包

我正在运行 Debian 7 stable,因为 Wheezy 上可用的旧版本无法发送 BTC,所以我想升级到 jessie-backports 中可用的新版本。那个版本可以用吗?如果是这样,如何修改sources.list?

答案1

鉴于 Electrum 是用 Python 编写的,并且 Jessie 向后移植中版本的依赖项与 Wheezy 中可用的 Python 版本兼容,因此应该可以执行您的建议。作为root

echo deb http://http.debian.net/debian jessie-backports main > /etc/apt/sources.list.d/jessie-backports.list
apt-get update
apt-get -t jessie-backports electrum

electrum这将从 Jessie 向后移植中引入python-electrum,但不会影响其余的软件包。一些建议的依赖项(例如 python-btchip)即使在 Jessie 向后移植中也不可用,因此某些功能可能会丢失。

相关内容