Community-maintained fork of the original Mordred molecular descriptor calculator. Current version 2.0.7, compatible with RDKit. Maintained as a drop-in replacement for the unmaintained mordred package. Released on an as-needed basis.
pip install mordredcommunityNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Import as 'from mordred' (not 'mordredcommunity'). Then compute all descriptors for a molecule.
Install RDKit first: conda install -c conda-forge rdkit or pip install rdkit-pypi (incompatible with some systems).
Use 'from mordred import Calculator, descriptors' in your code.
Review the release notes at https://github.com/JacksonBurns/mordred-community/releases for changes that might affect your results.
Always use 'pip install mordredcommunity' and not 'pip install mordred'.
Ensure you installed mordredcommunity (pip list) and that your Python environment is consistent (check Python version >=3.9).
Verify RDKit installation: from rdkit import Chem; mol = Chem.MolFromSmiles('CCO') works. Check that SMILES strings are valid.Correct import: from mordred import Calculator, descriptors