When i run in python:
import rdkit
from rdkit import Chem
from rdkit.Chem import AllChem
mol = Chem.MolFromSmiles('Oc1ccccc1N2C(=O)Nc3cc(ccc23)C(F)(F)F')
I get the following error:
Boost.Python.ArgumentError: Python argument types in
rdkit.Chem.rdmolfiles.MolFromSmiles(str)
did not match C++ signature:
MolFromSmiles(std::string SMILES, bool sanitize=True, boost::python::dict replacements={})
The installation of Boost (1.54) and Rdkit (2013_09_1) can be found in previous question:
Is anyone knows what is going wrong?
Thanks in advance.