Free and Open Source, just like Blender!

1. ChemBlender_alpha (2024.03.14 supports Blender 4.0)

2. ChemBlender_1_0 (2025.04.01 supports Blender 4.1 to 4.4)

released version

Python libraries introduction

You can install third-party python libraries in Blender by entering the following command in the Blender Python Console window. For example, to install RDKit:

import sys

import subprocess

python_exe = sys.executable

subprocess.call([python_exe, ‘-m‘, ‘pip‘, ‘install‘, ‘rdkit‘])