easythrees 0 Posted December 1, 2020 Hi all, I have a script that can do some cooking and timing in Houdini. However, right now I can only run it in UI mode. Is it possible to run my script using the houdini command line? Something like: houdini -batch -file "somefile.hip" - script "somescript.py" Share this post Link to post Share on other sites
symek 376 Posted December 1, 2020 Sure. Link to help. Basically: hython script.py [optional params] where script looks like: import hou hou.hipFile.load("myscene.hip") ... Share this post Link to post Share on other sites
easythrees 0 Posted December 1, 2020 Okay, thank you, that worked! Share this post Link to post Share on other sites