Hugs in OS X

Johan Nordlander nordland@sm.luth.se
Fri, 4 Apr 2003 15:07:32 +0200


> Hello, I have installed Hugs on Mac OS X 10.2.4.  All of the files 
> that the installer said it would install are there in the correct 
> directories that it said they would be installed in.  Yet I cannot 
> seem to start up Hugs.  I have tried typing "hugs" in the terminal 
> window from all sorts of different directories, I have tried "open 
> hugs" and nothing works.  Is something wrong with my install, or am I 
> not doing something right in running it?  I appreciate any help very 
> much.
> Thanks
>
> Noah

Hi Noah,

You need to set up the search path of your shell to include 
/usr/local/bin/, which is where hugs gets installed.  If you're using 
the deafult shell, add the line

    setenv PATH $PATH:/usr/local/bin/

to the file .tcshrc in your home directory (create if it doesn't 
exist), or check out

    http://www.macobserver.com/tips/macosxcl101/2002/20020712.shtml

for more info.

-- Johan