https://github.com/pymc-devs/pymc3
Raw File
Tip revision: bfc3813367592e62cc25be5abf0484d417972d84 authored by Ravin Kumar on 20 August 2021, 16:19:55 UTC
Update __init__.py
Tip revision: bfc3813
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