Installing Blender add-ons
Blender add-ons are usually installed from a single .py file or a zipped add-on package. Once installed, the add-on still has to be enabled before its panels, menus, or operators show up.
Generic install
- Open Blender.
- Go to Edit > Preferences > Add-ons.
- Use Install from Disk.
- Choose the add-on's
.pyfile or.zippackage. - Enable the checkbox next to the add-on after Blender adds it to the list.
- Use the add-on's article to find its panel, menu item, or operator.
Example from toolbox
Suppose toolbox is cloned at C:\Users\ccn\projects\toolbox and you want to install one of the Blender add-ons stored in it.
- In Blender, go to Edit > Preferences > Add-ons.
- Click Install from Disk.
- Choose a file from
C:\Users\ccn\projects\toolbox\content\notes\software\blender\addons. - For example, choose
better_gltf_exporter_addon.py. - Enable Better glTF Exporter.
- Use File > Export > Better glTF (.gltf).
Notes
- A standalone
.pyadd-on can be installed directly. - If Blender copies the add-on into its preferences folder, editing the toolbox copy may not update Blender's installed copy automatically.
- When actively developing an add-on, it can be faster to run the script from Blender's text editor, install it again after edits, or place a development copy in Blender's scripts/addons folder.