Skip to content

Debian binary packages

Kevin M. Gallagher edited this page Oct 22, 2016 · 23 revisions

Zcash Company operates a package repository for 64-bit Debian-based distributions. If you'd like to try out the binary packages, you can set it up on your system and install Zcash from there.

First install the following dependency so you can talk to our repository using HTTPS:

sudo apt-get install apt-transport-https

Next add the Zcash master signing key to apt's trusted keyring:

wget -qO - https://apt.z.cash/zcash.asc | sudo apt-key add -

Fingerprint: F1E2 1403 7E94 E950 BA85 77B2 63C4 A216 9C1B 2FA2

Add the repository to your sources:

echo "deb https://apt.z.cash/ jessie main" | sudo tee /etc/apt/sources.list.d/zcash.list

Finally, update the cache of sources and install Zcash:

sudo apt-get update && sudo apt-get install zcash

Lastly you can run zcash-fetch-params to fetch the zero-knowledge parameters, and set up ~/.zcash/zcash.conf before running Zcash as your local user, as documented in the Beta Guide.

Clone this wiki locally