Error when running hexpand
3528
4
0
KMcNamara
Member
228 posts
Joined: Dec. 2012
Offline
Nov. 28, 2013 8:06 p.m.
Hi, I'm trying to examine a hip file with hexpand, but when I run the command in cygwin, I get the following error.
Command:
“C:\Program Files\Side Effects Software\Houdini 13.0.198.21\bin\hexpand” c
users/kevin/desktop/test.hip
Error:
—————-
hcpio: Command not found.
test.hip does not seem to be a hip file.
—————–
However, test.hip is a valid hip file - opens in Houdini just fine.
I'm running windows 7, Houdini 13.0.198
Any ideas?
Thanks
edward
Member
8080 posts
Joined: July 2005
Online
Nov. 29, 2013 12:09 a.m.
Make sure that the parent “bin” directory is in your PATH. If you started up “Command Line Tools” from Start Menu for Houdini, this is done automatically for you. If you're in Cygwin, then start it up, and do something like this:
cd “C
Program Files/Side Effects Software/Houdini 13.0.198.21”
source houdini_setup
cd “c
users/kevin/desktop”
hexpand test.hip
KMcNamara
Member
228 posts
Joined: Dec. 2012
Offline
Nov. 29, 2013 3:47 a.m.
Thanks edward. Now I'm getting the following error: /cygdrive/c/PROGRA~1/SIDEEF~1/HOUDIN~1.21/bin/hexpand: Permission denied. Any ideas on that? I tried running cygwin in administrator mode but no luck
KMcNamara
Member
228 posts
Joined: Dec. 2012
Offline
Dec. 1, 2013 3:58 p.m.
Bumping the thread up - anyone have any ideas on how to get around this permission denied error? Thanks
edward
Member
8080 posts
Joined: July 2005
Online
Dec. 11, 2013 11:35 p.m.
Yeah, you're right it seems that Houdini's native csh doesn't seem to work anymore. I had to do this to make it work: /usr/bin/csh `which hexpand` test.hip First, I use cygwin's csh explicitly and the `which hexpand` part gives it the full path to the hexpand found in PATH.