I fixed issue by enabling RedShift via json package.
In my case the problem was on a macbook m1.
I tried to configure RedShift via
houdini.env
but mantra stopped working.
After a little digging I noticed that removing
PATH
section from
houdini.env
helps. I haven't tested this well enough so this solution may cause problems
Anyway, I created
/Users/YOUR_USERNAME_HERE/Library/Preferences/houdini/HOUDINI_VERSION/packages/redshift.json
file and put the next content to it:
{
"env": [
{ "RS_PLUGIN_VERSION": "20.5.370_arm64" },
{ "REDSHIFT_COREDATAPATH": "/Applications/redshift" },
{
"HOUDINI_PATH": "${REDSHIFT_COREDATAPATH}/redshift4houdini/${RS_PLUGIN_VERSION}"
},
{ "PATH": "${REDSHIFT_COREDATAPATH}/bin" },
{
"PXR_PLUGINPATH_NAME": "${REDSHIFT_COREDATAPATH}/redshift4solaris/${RS_PLUGIN_VERSION}"
}
]
}
Make sure you set the
RS_PLUGIN_VERSION
to correct one.
I hope this helps someone.