The problem is that no one seems to understand the fully correct syntax, while some slightly bad variations happen to work depending on the platform/method.
Let me try to lay out some of the rules:
- Houdini only expands environment variables in the hscript syntax. ie. $HOME,
not the DOS syntax like %HOME%.
- The path separators should be semi-colon (

instead of colon (

. This works on all platforms. Linux/OSX happen to also accept colon (

as well.
- When you override a variable, you should have “&” in there somewhere so that the default path is still used. Depending on your shell, this is sometimes a special character, in which case you need to ensure that you set it with the correct escaping.
- On Windows especially, make sure you launch Houdini from the shell you set the environment variable. You cannot set it into a shell and then expect the Start Menu > Houdini to see it.
- You must set your environment variable *BEFORE* Houdini is loaded.
- If you're using houdini.env (as an alternative), then you must use double quotes if your variable value contains spaces.