Why are my Houdini ShotGrid integrations not starting?
This covers the most common reason we’ve seen for the ShotGrid integrations not starting in Houdini. In this case, Houdini launches without error from ShotGrid Desktop, your ShotGrid website, or the tank command. However, once Houdini is launched, the ShotGrid menu or shelf does not appear.
Often the reason for this is that the HOUDINI_PATH
environment variable has been overridden, and ShotGrid relies on that
for passing the startup script path.
When Houdini is launched from ShotGrid, the launch app logic adds the ShotGrid bootstrap script path to the HOUDINI_PATH
environment variable. However, the problem can arise when Houdini has a
houdini.env file.
This file allows the user to set environment variables that will be present when Houdini is loaded, but any values
defined in the file will overwrite pre-existing environment variables in the current session.
The fix for this is to make sure you include the pre-existing HOUDINI_PATH
environment variable in the new definition
for that variable.
For example, if you have something like this already in your houdini.env
file:
HOUDINI_PATH = /example/of/an/existing/path;&
Then you should add $HOUDINI_PATH;
to the end of the path defined in the file and save it:
HOUDINI_PATH = /example/of/an/existing/path;$HOUDINI_PATH;&
This will allow the ShotGrid set value to persist when Houdini launches.
Caution
: On Windows we’ve seen $HOUDINI_PATH
causing issues. It sometimes tries to bootstrap the Shotgun integration multiple times generating an error like this:
Toolkit bootstrap is missing a required variable : TANK_CONTEXT
%HOUDINI_PATH%
instead.
If this does not fix your problem please reach out to our support team and they will help you diagnose the issue.