rdkit / homebrew-rdkit

Homebrew formula for rdkit
44 stars 19 forks source link
WARNING: this repository is outdated. Please consider using the more recent brew formula
WARNING: to install rdkit. The new formula does not require you to use the rdkit/rdkit tap
WARNING: and installs python bindings.
WARNING: pip might be able to install rdkit also: pip3 install rdkit
WARNING: Cf. https://formulae.brew.sh/formula/rdkit#default (brew install rdkit).

Build status

Homebrew-rdkit: tap-ready formula for rdkit

First, make sure you Homebrew version is 0.9 or above (you can check your brew version with brew --version).

After tapping this repo with

brew tap rdkit/rdkit

You can install rdkit with just one line of command:

brew install rdkit --with-python3

If you want to stay on the edge and use the latest and greatest from GitHub:

brew install --HEAD rdkit --with-python3

Optional installs

Forcing brew to install rdkit and all its dependencies from scratch

Brew is not a very smart or reliable package manager. If you encounter any error, you might try the following to force installing rdkit:

# backup your brew installed packages list
brew list --formula > my_brew_packages.txt
# uninstall all of them
brew uninstall --force $(cat my_brew_packages.txt)
# install rdkit from scratch
brew install rdkit --with-python3

Errors you might encounter

By default, Homebrew will attempt to install and manage numpy for you, like all other dependencies. You may alternatively install and manage numpy separately, via pip:

pip3 install numpy
brew install rdkit --with-python3 --without-numpy

This indicates that rdkit or one of its dependencies (e.g. boost) was linked against a different version of Python than the one you are using it with. Try rebuilding boost from source:

brew uninstall boost
brew install boost --build-from-source

If that doesn't fix it, try comparing the output of these three commands:

python-config --prefix
find /usr/local/Cellar/rdkit -name rdBase.so -exec otool -L {} \;
find /usr/local/Cellar/boost -name libboost_python-mt.dylib -exec otool -L {} \;

This is likely due to a bug in boost-python v1.60, which has now been patched in the boost homebrew formula. To get the patch, run:

brew reinstall boost
brew reinstall rdkit