Dear Abhik, On Mon, Apr 2, 2012 at 12:56 AM, Abhik Seal <[email protected]> wrote: > I was just trying my hands on rdkit and installed the package and when i > tried to use it just a simple program: > > from rdkit import Chem > from rdkit import rdbase > > m = Chem.MolFromSmiles(Cc1cccccc1) > print mol.GetNumAtoms() > > I get an error like > > Traceback (most recent call last): > File "C:\Python27\rd1.py", line 1, in <module> > from rdkit import Chem > File "C:\Python27\lib\site-packages\rdkit\Chem\__init__.py", line 18, in > <module> > from rdkit import rdBase > ImportError: DLL load failed: The specified module could not be found. > > i using the recent version of rdkit and installed the package dont know > whats wrong . Can you suggest something
You need to make sure that the RDKit lib directory (it was part of the zip file) is in your PATH. This is most likely the cause of the problem. Best, -greg ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ Rdkit-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rdkit-discuss

