[Radiance-general] falsecolor trouble

Thomas Bleicher tbleicher at arcor.de
Wed Jan 18 20:05:49 CET 2006


On 18.01.2006, at 19:03, Tony Masinton wrote:

> I've just rendered my first successful Radiance picture with rad.
>
> Now, I want to produce a contour line picture from falsecolor.
>
> However, when I enter this into my command line:
>
>         falsecolor -ip skeltest1_vw1.pic -cl > contourtest.pic
>
> This is returned:
>
>         csh: mkdir: Command not found.

Your csh tells you that it can't find the command "mkdir"
which should be in your /bin directory (here: OS X 10.4.4)
and is (hopefully) a sign for a wrong search path setting.

Please check which csh you are using and if you can find mkdir
from the command line. Type these commands:

which csh
which mkdir

Also check the output of

echo $PATH

You realy should fix this csh problem but here is a quick
workaround:

Create a new directory (with "Finder") or - if this works -
from the BASH prompt:

mkdir /tmp/falsecolor

And change the first line (after the comments) in falsecolor
(probably the file "/usr/local/bin/falsecolor"):

from:     set td=/tmp/fc$$
to:       set td=/tmp/falsecolor

and the last line:

from:     rm -rf $td
to:       rm -rf $td/*

You can only run one instance of falsecolor at a time now
but it will help until you found and fixed the real problem.


Thomas




More information about the Radiance-general mailing list