https://github.com/pymc-devs/pymc3
Raw File
Tip revision: cce16130fa2a57593b53902244d627370bb75cfb authored by Thomas Wiecki on 16 December 2021, 09:45:25 UTC
Fix readme underlining.
Tip revision: cce1613
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