Skip to content

Instantly share code, notes, and snippets.

Created July 25, 2017 21:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ffe37c4741c02ce12ead1d40c912cd4c to your computer and use it in GitHub Desktop.
Save anonymous/ffe37c4741c02ce12ead1d40c912cd4c to your computer and use it in GitHub Desktop.
# Install Apple Command Line Tools
xcode-select --install
# Install Homebrew under /usr/local
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install PyQt4
brew install cartr/qt4/pyqt@4 libsodium
# Create virtualenv "jmvenv"
export PATH=/usr/local/opt/python/libexec/bin:$PATH
pip install virtualenv
virtualenv --python=/usr/local/opt/python/libexec/bin/python --system-site-packages jmvenv
source jmvenv/bin/activate
# Setup joinmarket-qt
git clone https://github.com/AdamISZ/joinmarket-clientserver
cd joinmarket-clientserver
git checkout 6ad114d
python setupall.py --daemon
python setupall.py --client-bitcoin
# Start joinmarket-qt
python scripts/joinmarket-qt.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment