https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 40ccb10936fae21dd59db15585aef01cdae36eda authored by Chris Fonnesbeck on 09 January 2017, 14:08:10 UTC
Merge pull request #1647 from pymc-devs/v3.0_release
Tip revision: 40ccb10
buildosx
#!/bin/sh
export CFLAGS="-arch x86_64"
export FFLAGS="-static -ff2c -arch x86_64"
export LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch x86_64"
rm -rf build
python setupegg.py bdist_egg
back to top