Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

R's devtools - install from github with "configure" file

Tags:

github

r

devtools

I have an R package on github that uses a "configure" script (since some of the C code depends on GSL libraries). I try installing the package using github_install() function from devtools package and get the error:

(as ‘lib’ is unspecified)
* installing *source* package ‘wrightscape’ ...
ERROR: 'configure' exists but is not executable -- see the 'R Installation and Administration Manual'

Not sure what to do -- are there such a thing as execute permissions for a file on github? is this a devtools issue or a configuration issue? (Installing the package from source works fine for me). The package is here. https://github.com/cboettig/wrightscape

like image 879
cboettig Avatar asked Dec 05 '11 19:12

cboettig


1 Answers

This is now fixed in the latest version of devtools (0.7).

like image 178
hadley Avatar answered Oct 18 '22 00:10

hadley