How to install and uninstall Blender add-on via python API
Blender add-ons installation and uninstallation can be managed through the python API. Use the following commands in a script:
To deactivate the add-on:
1 |
bpy.ops.wm.addon_disable(module = 'add-on name') |
To uninstall the add-on:
1 |
bpy.ops.wm.addon_remove(module = 'add-on name') |
How to install and uninstall Blender add-on via python APIRead More »