James, On Sun, Oct 16, 2011 at 7:56 AM, James Davidson <[email protected]> wrote: > > I probably should have picked this up in the beta (but didn't...) When I > try to import AllChem, I see the following: > >>>> from rdkit import Chem >>>> from rdkit.Chem import AllChem > > Traceback (most recent call last): > File "<pyshell#6>", line 1, in <module> > from rdkit.Chem import AllChem > File "C:\Python27\RDKit_2011_09_1\rdkit\Chem\AllChem.py", line 28, in > <module> > from rdkit.Chem.rdSLNParse import * > ImportError: DLL load failed: The specified module could not be found.
If it's being caused by the SLN parser import, then the problem has to do with the boost regex library. I just checked the binary and it looks like I included the wrong dlls in the distribution. The short-term solution is quite simple: comment out the offending line in AllChem.py. This will only cause problems if you are using the SLN parser in your code. -greg -greg ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2d-oct _______________________________________________ Rdkit-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rdkit-discuss

