How to get current Blender version number through the Python API
To get current Blender version number through the Python API we need to execute the following command:
1 2 3 |
bpy.app.version # (2, 81, 16) |
or
1 2 3 |
bpy.app.version_string # '2.81 (sub 16)' |
How to get current Blender version number through the Python APIRead More »