Im trying to install graph-tool library on mac os x 10.11.2 machine. I have two python interpreter installed, pre-installed python 2.7 and anaconda 3.5
$ which python
/Users/Phoenix/anaconda/bin/python
to install graph-tool I had to use home-brew, since this is the recommended method to install graph-tool on mac os.
brew tap homebrew/science
brew install graph-tool
the problem I faced that the home-brew is pointing to python 2.7 which is not default python in my case. how I can force home-brew to install this package to the anaconda python?