Entering edit mode
Hi!
I'm trying to install Rgraphviz on R version 3.2.2 under Xubuntu 15.04. I always get the following error:
> install.packages("~/Dropbox/Rgraphviz_2.14.0.tar.gz", repos = NULL, type = "source")
Installing package into ‘/home/gibraa/R/x86_64-pc-linux-gnu-library/3.2’
(as ‘lib’ is unspecified)
* installing *source* package ‘Rgraphviz’ ...
ERROR: 'configure' exists but is not executable -- see the 'R Installation and Administration Manual'
* removing ‘/home/gibraa/R/x86_64-pc-linux-gnu-library/3.2/Rgraphviz’
Warning in install.packages :
installation of package ‘/home/gibraa/Dropbox/Rgraphviz_2.14.0.tar.gz’ had non-zero exit status
I unsuccessfully tried different workarounds. Any suggestion?
Thank you

Yes I tried the regular installation first and then the one from source that I reported (just because it produced a shorter output). The error was the same in both cases. I agree it's a permission issue but don't know what to do about.
I downloaded the file to a temporary location
> download.packages("Rgraphviz", repos=BiocInstaller::biocinstallRepos(), "/tmp") trying URL 'https://bioconductor.org/packages/3.2/bioc/src/contrib/Rgraphviz_2.14.0.tar.gz' Content type 'application/x-gzip' length 7694656 bytes (7.3 MB) ================================================== downloaded 7.3 MB [,1] [,2] [1,] "Rgraphviz" "/tmp/Rgraphviz_2.14.0.tar.gz" >and then in the shell
where
-rwxr-xr-xsays that the configure file has it's executable bit set.is successful. If I
chmod -x Rgraphviz/configure, and try toR CMD INSTALL Rgraphviz, then I get the error you indicate above. Are you trying to install the software under a restricted user, or from a device that somehow does not allow executable code?That worked for me as well. Thank you!