Created
July 25, 2017 21:14
-
-
Save anonymous/ffe37c4741c02ce12ead1d40c912cd4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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