I installed Xcode on my Mac, working on El Capitan version 10.11. I need to get the files from the github repository into my workspace in R, so I ran the line:
devtools::install_github("Myrepository")
And this error appears:
Downloading GitHub repo Myrepository from URL https://api.github.com/repos/Myrepository/func/zipball/master Erreur : Could not find build tools necessary to build func
I thought the problem might come from my gcc command line tools, but when I clicked
gcc -v
I have it installed:
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 Apple LLVM version 7.0.2 (clang-700.1.81) Target: x86_64-apple-darwin15.3.0 Thread model: posix
Any ideas?
source share