ts wrote: > Try this : > > 1) retrieve ruby-1.8.3.tar.gz from ftp.ruby-lang.org > > then do this > > mkdir $HOME/local > tar zxf ruby-1.8.3.tar.gz > cd ruby-1.8.3 > rm parse.c # THIS IS IMPORTANT > ./configure --prefix=$HOME/local > make > make install > > 2) change your PATH > > export PATH=$HOME/local/bin:$PATH > > 3) install susi with the new ruby > > 4) run it > > Thankyou, Guy. This fixed mine. _why