GSD Ops...
Ran into the following error on OSX, when trying to pip install a Homebrew installed version of ZooKeeper’s zkpython.
zookeeper.c:20:23: error: zookeeper.h: No such file or directory
Was able to install by providing the ‘C_INCLUDE_PATH’ to pip.
BREW_HOME=$HOME/.homebrew $ brew install zookeeper $ C_INCLUDE_PATH=${BREW_HOME}/Cellar/zookeeper/3.3.3/include/c-client-src/ pip install zkpython