From e256672a998986c70163d63d8cfd009049fa3389 Mon Sep 17 00:00:00 2001 From: AlexCato Date: Sun, 16 Oct 2016 01:56:22 +0200 Subject: [PATCH] Add quick install notes for tails Tested with Tails 2.6. Also fixed ordering error in the debian/ubuntu quick install notes --- README.md | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ccd1b534..23125157 100644 --- a/README.md +++ b/README.md @@ -61,11 +61,27 @@ The installation is slightly changed, with the secp256k1 python binding no longe 1. `sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get install python libsodium-dev python-pip -y` 2. Download JoinMarket 0.2.1 source from the [releases page](https://github.com/joinmarket-org/joinmarket/releases/tag/v0.2.1) or [this direct link to v0.2.1](https://github.com/JoinMarket-Org/joinmarket/archive/v0.2.1.tar.gz) -3. `sudo pip install -r requirements.txt` -3. `sudo apt-get install python-matplotlib -y` (optional) -4. Extract with `tar xzf v0.2.1.tar.gz` and then `cd joinmarket-0.2.1` -4. Generating your first wallet will populate the configuration file: `joinmarket.cfg`. +3. Extract with `tar xzf joinmarket-0.2.1.tar.gz` and then `cd joinmarket-0.2.1` +4. `sudo pip install -r requirements.txt` +5. Generating your first wallet (`python wallet-tool.py generate`) will populate the configuration file: `joinmarket.cfg`. Check if the default settings suit your needs. + +###TAILS QUICK INSTALL FOR USERS: +Tested up to TAILS version 2.6, but future versions likely will work as well. + +1. Make sure that you choose 'more options' when booting up tails and set an administrator password. +2. `sudo apt-get update -y` +3. `sudo apt-get install build-essential automake libtool pkg-config libffi-dev python-dev python libsodium-dev python-pip -y` +4. Download JoinMarket 0.2.1 source from the [releases page](https://github.com/joinmarket-org/joinmarket/releases/tag/v0.2.1) or [this direct link to v0.2.1](https://github.com/JoinMarket-Org/joinmarket/archive/v0.2.1.tar.gz): + `wget https://github.com/JoinMarket-Org/joinmarket/archive/v0.2.1.tar.gz` +5. Extract with `tar xzf joinmarket-0.2.1.tar.gz` and then `cd joinmarket-0.2.1` +6. `sudo torsocks pip install -r requirements.txt` +7. `sudo chmod -R ugo+rX /usr/local/lib/python2.7/dist-packages/` +8. `sudo cp -r /usr/local/lib/python2.7/dist-packages/libnacl .` +9. `sudo chown -R amnesia:amnesia libnacl` +10. Generating your first wallet (`torify python wallet-tool.py generate`) will populate the configuration file: `joinmarket.cfg`. + Check if the default settings suit your needs. +11. Prepend commands with `torify`, i.e. `torify python sendpayment.py ...` ###[INSTALL FOR WINDOWS USERS](https://github.com/JoinMarket-Org/joinmarket/wiki/Installing-JoinMarket-on-Windows)