Skip to content
Prev 165224 / 398506 Next

package install error in CentOS

solved:

There was indeed a problem with exec rights in the /tmp dir as they were set
by my VPS host. I fixed it by creating a dir 'tempdir' in my homedir, and
giving it 777 rights. Then set the environment variable TMPDIR in R:

Sys.setenv(TMPDIR="/home/jeroen/tempdir");
install.packages("Cairo");

thank you :)
Jeffrey Horner wrote: