Installing
GoQuorum and Tessera can be installed and used as Docker containers, by building from source, or by downloading pre-built release binaries.
As release binaries
The pre-compiled release binaries for GoQuorum and Tessera can be downloaded from the following links:
Once downloaded, add the binaries to PATH
to make them easily invokable.
As containers
Docker containers exist for GoQuorum and Tessera and can be found at the quorumengineering
Docker repository:
docker pull quorumengineering/quorum
docker pull quorumengineering/tessera
From source
GoQuorum
-
Clone the repository and build the source:
git clone https://github.com/Consensys/quorum.git cd quorum make all
Binaries are placed in
$REPO_ROOT/build/bin
. Add that folder toPATH
to makegeth
andbootnode
easily invokable, or copy those binaries to a folder already inPATH
, for example/usr/local/bin
.An easy way to supplement
PATH
is to addPATH=$PATH:/path/to/repository/build/bin
to your~/.bashrc
or~/.bash_aliases
file. -
Run the tests:
make test
Tessera
Follow the installation instructions on the Tessera project page.