Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Add MacOS build requirements #302

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,24 @@ python -m microraiden.examples.demo_proxy --private-key <private_key_file> start
* Go to the paywalled resource pages:
- http://localhost:5000/doggo.jpg

### MacOS build issues with OpenSSL

* if necessary to complete the build, install latest OpenSSL on MacOS

```
brew update
brew upgrade openssl
```

* additional dependency-related build steps on MacOS as necessary:

```
export CPPFLAGS="-I/usr/local/opt/openssl/include $CPPFLAGS"
brew install automake
export LDFLAGS="-L/usr/local/opt/openssl/lib"
brew install libtool
```


## How To

Expand Down
2 changes: 1 addition & 1 deletion microraiden/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-r requirements.txt
pytest
ethereum-tester
eth-tester
mock
requests_mock