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 4 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
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,22 @@ virtualenv -p python3 env
pip install -e microraiden
```

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

@loredanacirstea loredanacirstea Dec 19, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add this at the end of the Quick Start section:

### MacOS build issues with OpenSSL
<your suggestions>

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is what you're looking for, let me know if I can provide further improvement.


```
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
```

* install the WebUI component for the paywall examples

Note that while the `RaidenMicroTransferChannels` contract supports multiple open channels between a sender and a receiver, the WebUI component only supports one.
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