Previously I have been able to start Rserve from the command line via:
R CMD Rserve
After upgrading to 3.0.2 on Ubuntu, I get:
/usr/lib/R/bin/Rcmd: 62: exec: Rserve: not found
I've tried reinstalling and launching manually via
R
> install.packages('rserve')
> ...compiles successfully...
> RServe()
Starting Rserve:
/usr/lib/R/bin/R CMD /home/user1/R/x86_64-pc-linux-gnu-library/3.0/Rserve/libs//Rserve
...which works fine.
R CMD Rserve still fails with the same error as above. I've tried specifying the path via:
export RHOME="/home/jwiley/R/x86_64-pc-linux-gnu-library/3.0/Rserve/libs/"
export R_LIBS="/home/jwiley/R/x86_64-pc-linux-gnu-library/3.0/Rserve/libs/"
How can I convince R CMD to use the correct directory?