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)
3. ChemBlender_1_0 (2025.04.01 supports Blender 4.2 to 4.4)
4. ChemBlender_1_1 (2025.05.19 supports Blender 4.2 to 4.4, beta version)
released version
user manual
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‘])