diff options
author | Kali Kaneko <kali@leap.se> | 2018-06-13 23:14:12 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-06-13 23:14:12 +0200 |
commit | 7bd5007d3965c706ccff995546c4ea9abbaf8c4f (patch) | |
tree | e080c230ebde417a7cbdd11564c8d09e7da3a84c /docs/hacking/osx.rst | |
parent | f7842a1d1d4757c53bdedf8ec75b28dc7d176a43 (diff) |
[docs] include zmq dep for now
Diffstat (limited to 'docs/hacking/osx.rst')
-rw-r--r-- | docs/hacking/osx.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/hacking/osx.rst b/docs/hacking/osx.rst index b4169963..44181dbd 100644 --- a/docs/hacking/osx.rst +++ b/docs/hacking/osx.rst @@ -12,11 +12,14 @@ However, for compatibility reasons, we choose an older release for shipping bund * You will need to install xcode and the command line developer tools (``xcode-select --install``). -* Use ``brew`` to install ``OpenSSL``: ``brew install openssl`` +* Use ``brew`` to install ``OpenSSL`` and some other dependencies:: + + brew install openssl + brew install zeromq # needed for shipping the libs for riseupvpn for the moment. * Install ``wget``: ``brew install wget`` (interestingly, this installs openssl 1.1, which we might want in order not to use the python scrypt extension). -* Install a recent python: ``brew install python`` +* Install a recent python: ``brew install python2`` * Put the installed python in your path: ``echo 'export PATH="/usr/local/opt/python/libexec/bin:$PATH"' >> ~/.bash_profile`` |