Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 567 Bytes

README-osx.md

File metadata and controls

32 lines (23 loc) · 567 Bytes

Web3.py on OSX

Developer Setup

  1. Install XCode command line tools
xcode-select --install
  1. Install all of the package dependencies
brew install openssl libffi autoconf automake libtool
  1. Install leveldb
brew install leveldb

If you are on >=OSX 10.15 Catalina you may encounter the following error with the default ZSH shell. This can be fixed by wrapping the [dev] part in quotes.

pip install -e .[dev]
zsh: no matches found: .[dev]

Run install commands as follows:

pip install -e .'[dev]'