Give AlbumentationsX a star on GitHub — it powers this leaderboard

Star on GitHub

rdkit

A collection of chemoinformatics and machine-learning software written in C++ and Python

Rank: #1770Downloads: 4,909,199 (30 days)Stars: 138Forks: 20

Description

🔥 RDKit Python Wheels

This repository holds the code to build RDKit platform wheels for Linux, macOS, and Windows on Github Action and Circle CI. The wheels contain the compiled platform-specific dynamic libraries (*.so, *.dylib, and *.dll) and are available at PyPI. RDKit can easily be installed using

pip install rdkit

Please open an issue if you find something missing or not working as expected.

PyPI version shields.io PyPI download day PyPI download month PyPI download day GitHub Repo stars

Available Builds

OSArchBitConditions3.83.93.103.113.123.133.14CI
Linuxintel64glibc >= 2.28 (e.g., Ubuntu 18.04+, CentOS 6+, ...)last: 2024.3.5last: 2025.9.2✔️✔️✔️✔️✔️Github Actions
Linuxaarch6464glibc >= 2.28 (e.g., Raspberry Pi, ...)last: 2024.3.5last: 2025.9.2✔️✔️✔️✔️✔️Circle CI
macOSintel64>= macOS 10.15last: 2024.3.5last: 2025.9.2last: 2025.9.3last: 2025.9.3last: 2025.9.3last: 2025.9.3last: 2025.9.3Github Actions
macOSarmv864>= macOS 11, M-Hardwarelast: 2024.3.5last: 2025.9.2✔️✔️✔️✔️✔️Github Actions
Windowsintel64last: 2024.3.5last: 2025.9.2✔️✔️✔️✔️✔️Github Actions

Installation

PIP

python -m pip install rdkit
python -c "from rdkit import Chem; print(Chem.MolToMolBlock(Chem.MolFromSmiles('C1CCC1')))"

uv

uv add rdkit
uv run python -c "from rdkit import Chem; print(Chem.MolToMolBlock(Chem.MolFromSmiles('C1CCC1')))"

Local builds on Linux

cibuildwheel requires patchelf (apt install patchelf)

python3 -m pip install cibuildwheel

git clone https://github.com/kuelumbus/rdkit-pypi.git
cd rdkit-pypi

CIBW_BUILD=cp313-manylinux_x86_64 python3 -m cibuildwheel --platform linux --output-dir wheelhouse --config-file pyproject.toml

Replace * in cp*-manylinux_x86_64 with 310, 311, 312, 313, or 314 to build for different Python