Build Of Py2cairo Fails In Mac OS X With Homebrew
I've made the debatable decision to do some network analysis directly in Python instead of R. However, I'm having trouble getting all the igraph dependencies installed, ultimately
Solution 1:
export ARCHFLAGS='-arch x86_64' # this is for Mac os x
./waf clean
./waf configure --prefix=`python -c "import sys; print sys.prefix"`
./waf build
./waf install
This works well on my Mac
Post a Comment for "Build Of Py2cairo Fails In Mac OS X With Homebrew"