All Projects → kuelumbus → rdkit-pypi

kuelumbus / rdkit-pypi

Licence: other
⚛️ RDKit Python Wheels on PyPi. 💻 pip install rdkit-pypi

Programming Languages

python
139335 projects - #7 most used programming language
C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to rdkit-pypi

Scopy
An integrated negative design python library for desirable HTS/VS database design
Stars: ✭ 28 (-54.84%)
Mutual labels:  cheminformatics, rdkit, pypi-package
cp-tool
cp-tool is an auto generator for solved problems at different online judges.
Stars: ✭ 24 (-61.29%)
Mutual labels:  pypi, pypi-package
chembience
A Docker-based, cloudable platform for the development of chemoinformatics-centric web applications and microservices.
Stars: ✭ 41 (-33.87%)
Mutual labels:  cheminformatics, rdkit
starcli
✨ Browse trending GitHub projects from your command line
Stars: ✭ 436 (+603.23%)
Mutual labels:  pypi, pypi-package
Jupyter Dock
Jupyter Dock is a set of Jupyter Notebooks for performing molecular docking protocols interactively, as well as visualizing, converting file formats and analyzing the results.
Stars: ✭ 179 (+188.71%)
Mutual labels:  cheminformatics, rdkit
pypi-command-line
A powerful, colorful, beautiful command-line-interface for pypi.org
Stars: ✭ 32 (-48.39%)
Mutual labels:  pypi, pypi-package
vfxwindow
Python Qt Window class for compatibility between VFX programs
Stars: ✭ 80 (+29.03%)
Mutual labels:  pypi, pypi-package
py4chemoinformatics
Python for chemoinformatics
Stars: ✭ 78 (+25.81%)
Mutual labels:  cheminformatics, rdkit
ISS Info
Python wrapper for tracking information about International Space Station via http://open-notify.org
Stars: ✭ 12 (-80.65%)
Mutual labels:  pypi, pypi-package
feedsearch-crawler
Crawl sites for RSS, Atom, and JSON feeds.
Stars: ✭ 23 (-62.9%)
Mutual labels:  pypi
paccmann datasets
pytoda - PaccMann PyTorch Dataset Classes. Read the docs: https://paccmann.github.io/paccmann_datasets/
Stars: ✭ 15 (-75.81%)
Mutual labels:  rdkit
drum-hat
Python library for the Pimoroni Drum HAT Raspberry Pi Add-on board.
Stars: ✭ 26 (-58.06%)
Mutual labels:  pypi-package
PySDM
Pythonic particle-based (super-droplet) warm-rain/aqueous-chemistry cloud microphysics package with box, parcel & 1D/2D prescribed-flow examples in Python, Julia and Matlab
Stars: ✭ 26 (-58.06%)
Mutual labels:  pypi-package
ProxyGrab
Asynchronous Library made using Python and aiohttp to get proxies from multiple services!
Stars: ✭ 17 (-72.58%)
Mutual labels:  pypi
Simple-YouTube-Downloader
YouTube download client with focus on simplicity
Stars: ✭ 31 (-50%)
Mutual labels:  pypi
matrix-registration
a token based matrix registration api
Stars: ✭ 182 (+193.55%)
Mutual labels:  pypi
kGCN
A graph-based deep learning framework for life science
Stars: ✭ 91 (+46.77%)
Mutual labels:  cheminformatics
molml
A library to interface molecules and machine learning.
Stars: ✭ 57 (-8.06%)
Mutual labels:  cheminformatics
tchamba
Tchamba.random, is a real random data genarator (letters, jokes, names...)
Stars: ✭ 11 (-82.26%)
Mutual labels:  pypi
st7789-python
Python library to control an ST7789 240x240 1.3" TFT LCD display.
Stars: ✭ 120 (+93.55%)
Mutual labels:  pypi-package

🔥 RDKit Python Wheels

This repository holds the code to build RDKit platform wheels for Linux, macOS, and Windows. The wheels contain the platform-specific dynamic libraries (*.so, *.dylib, and *.dll) and are available at PyPi. You can install RDKit using pip (pip install rdkit-pypi).

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

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

Available Builds

OS Arch Bit Conditions 3.7 3.8 3.9 3.10 CI
Linux intel 64 glibc >= 2.17 (e.g., Ubuntu 16.04+, CentOS 6+, ...) ✔️ ✔️ ✔️ ✔️ Github Actions
Linux aarch64 64 glibc >= 2.17 (e.g., Raspberry Pi, ...) ✔️ ✔️ ✔️ ✔️ Circle CI
macOS intel 64 >= macOS-11 ✔️ ✔️ ✔️ ✔️ Github Actions
macOS armv8 64 >= macOS-11 (M1 hardware) ✔️ ✔️ ✔️ Github Actions
Windows intel 64 ✔️ ✔️ ✔️ ✔️ Github Actions

Install RDKit from PyPi

PIP

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

Poetry

poetry add rdkit-pypi
poetry 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=cp37-manylinux_x86_64 python3 -m cibuildwheel --platform linux --output-dir wheelhouse --config-file pyproject.toml

Replace cp37-manylinux_x86_64 with cp38-manylinux_x86_64, cp39-manylinux_x86_64, and cp310-manylinux_x86_64 to build for other python versions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].