Deploying Blender in Production#

It is possible to deploy Blender in environments that are more restricted, use automation or have other special requirements. For example in an animation studio or for school courses.

This page contains tips setting up Blender in such environments.

Instalación de Blender#

Blender downloads can be extracted to any directory on the system, as a self contained installation. Multiple Blender versions can easily co-exist on the same system, and deployment can be automated using standard file management tools.

New Blender versions may add, remove or changes functionality that change the results of production files. For a given project, it is advisable to use a single LTS version of Blender. LTS versions receive bug fixes for two years.

Working Offline#

For security or other reasons, workstation may not have internet access.

By default Blender does not access the internet, however this can be enabled in the System preferences with the Online Access option.

Working offline can be enforced by running with the --offline-mode command line argument. Users will then be unable to enable online access in the preferences.

Bundling Extensions#

When working offline or in a more controlled environment, it may be useful to provide a set of extensions to all users. These can be served from the default read-only System repository. This can be located for example on a network drive or in a system directory.

../_images/advanced_deploying-blender_system-extensions.png

System repository#

The $BLENDER_SYSTEM_EXTENSIONS environment variable controls the default location. This should point to a directory, within which a system directory should exist.

Extensions packages should be extracted in this system directory, with a resulting path like this:

$BLENDER_SYSTEM_EXTENSIONS/system/my-addon/blender_manifest.toml

In the Extensions preferences, it’s possible to manually set a custom directory of the default System repository and to create multiple repositories.

Bundling Scripts#

Besides extensions, it’s possible to bundle scripts for presets, application templates, legacy add-ons, as well as scripts run on startup.

Script directories can be manually added in the File Paths preferences. The $BLENDER_SYSTEM_SCRIPTS can also be used to add a script directory without modifying the preferences.

These script directories are expected to contain specific directories like presets, addons and startup for different types of scripts. See Estructura de rutas for a complete list.

Startup Scripts#

The Blender Python API can be used to customize Blender. This includes changing preferences, changing the startup file and adding UI elements.

For example, a script can enable add-ons for every user.

$BLENDER_SYSTEM_SCRIPTS/startup/enable_addons.py
def register():
    import addon_utils
    addon_utils.enable("my-addon")

def unregister():
    pass

if __name__ == "__main__":
    register()

Plantillas de aplicación#

Plantillas de aplicación can be used to set up Blender for particular tasks or projects, separate from the default configuration. When creating a new file the user can choose the template.

The files are expected to be placed in the system script directories like this:

$BLENDER_SYSTEM_SCRIPTS/startup/bl_app_templates_system/MyTemplate/__init__.py
$BLENDER_SYSTEM_SCRIPTS/startup/bl_app_templates_system/MyTemplate/startup.blend

Complementos antiguos#

Add-ons that have not been converted to become an extension yet need to be placed in the addons script directory.

For example, an add-on could be located at:

$BLENDER_SYSTEM_SCRIPTS/addons/simple_addon.py
$BLENDER_SYSTEM_SCRIPTS/addons/complex_addon/__init__.py

VFX Platform#

Blender follows the VFX reference platform, which means it is able to run on the same systems as other VFX software and exchange image, volume and scene files with them.

Python Version#

Blender and the by module are only compatible with a single Python version. This makes it possible for add-ons and VFX software in general to only have to target a single Python version.

Blender bundles a complete Python installation and does not interact with the system Python by default. This can be changed with the --python-use-system-env command line argument, if care is taken to set up a compatible Python version.