NOTE: the instructions on this page are for a Bitcoin-only setup. For altcoin support, additional installation steps are required. See Altcoin and Forkcoin Support for more information.
For computers with no Internet connection, see Note for offline machines below.
$ sudo apt-get install curl git gcc libtool make autoconf libgmp-dev libssl-dev libpcre3-dev libmpfr-dev libmpc-dev python3-dev python3-pip libsecp256k1-dev
$ sudo pacman -S curl git gcc libtool make autoconf automake autogen pcre python-pip libsecp256k1
You may wish to use a virtual environment to keep your MMGen Wallet installation isolated from the rest of your Python packages.
If you choose not to use a virtual environment, then you may need to add
--break-system-packages
to the pip install
command line, depending on your
Python version and Linux distribution. Note that this will not in fact break
any system packages, as pip installs all packages under the user’s home
directory when invoked as user.
$ python3 -m pip install --upgrade pip setuptools build wheel
$ python3 -m pip install mmgen-wallet
Note: While the development version is always tested on Linux before being pushed to the public repository, security vulnerabilities are more likely to be present in new code than in a stable release. In addition, new code may require dependencies or installation steps not yet covered in the documentation.
If not running in a virtual environment, make sure that ~/.local/bin
is in
PATH
. Existing MMGen Wallet users should delete any old installations under
/usr
or /usr/local
.
$ git clone https://github.com/mmgen/mmgen-wallet.git
$ cd mmgen-wallet
$ python3 -m build --no-isolation
$ python3 -m pip install --upgrade dist/*.whl # see 'Install Note' below
$ cd ..
Install Note: When upgrading from previous versions, the --force
and
--no-deps
options also come in handy on occasion.
Install your coin daemon(s). To install prebuilt binaries, go here. To install from source, go here.
If you plan to run the test suite, additional installation steps are required. Refer to the Test Suite wiki page for details.
The computer you’ve designated for offline use must be connected to the Internet to retrieve and install the above packages as described above. This is normally not a problem, as you can simply take it offline permanently after the install is done, preferably removing or disabling its network interfaces.
However, if your machine is already offline and you wish to leave it that way, or if it lacks a network interface entirely, then you’ll need to take the following steps:
If your offline and offline computers have the same architecture, then download the Debian/Ubuntu packages and their dependencies on the online one using
apt-get download
. Otherwise, retrieve the packages manually frompackages.debian.org
orpackages.ubuntu.com
.Download the Python build tools using
python3 -m pip download
.Transfer the downloaded files to your offline computer using a USB stick or other removable medium. Install the Debian/Ubuntu packages with
sudo dpkg -i
and the Python packages withpython3 -m pip install
.
Congratulations, your installation is now complete! You can now proceed to Getting Started with MMGen Wallet.