python bindings for pokerstove
sudo apt-get install cmake libboost-all-dev swig
brew install boost cmake swig
git clone --recursive http://gitub.com/joeleong/pypokerstove
# pokerstove patches
git apply patches/*.patch
# build pokerstove/libs
mkdir pokerstove/build
pushd pokerstove/build
cmake ../src
make
popd
# build pypokerstove (python bindings)
mkdir build
cd build
cmake ..
make
# install bindings (-e for develop)
pip install .
There is also a Dockerfile for Linux dev
docker build -t pypokerstove .
docker run -it pypokerstove