Unable to Install CITRUS
Closed this issue · 14 comments
Says the error is:
Error: Could not find build tools necessary to build citrus
Probably means that the compiling tools are not installed properly. If you're on a mac, can you verify that XCode and the command line tools are installed correctly?
And if you run
gcc -v
... do you see the expected output?
That seems correct. I'd recommend downloading the source from github and trying to install via the command line. E.G. running this in the terminal:
R CMD INSTALL /path/to/source
... and seeing if you get a more detailed error.
Hi chethanjjj,
it worked for me when I entered
install_github("nolanlab/citrus")
@BOstendorf that's interesting. are you running the most up-to-date Xcode?
yes, I'm running Xcode 8.0
@chethanjjj I'm closing this as stale - please feel free to re-open if still a problem.
Hi Dr. Bruggner,
Hope all is well. I have a question regarding the CITRUS installation #2. I was able to install it properly thanks to your suggestions, however....
It seems using this method causes problems with other R packages (flowStats) in the meta-analysis framework I showed you earlier in summer.
I’ve tried using the first installation step but came across the issues you had mentioned in a thread. The solution I’ve been told is to compile all R packages using gcc instead of the default compilers/using the binary packages. Before I do this, I’m just wondering if you have any suggestions to make CIRTUS play nicely with the other packages.
- Chethan Jujjavarapu
I've had relatively minimal experience exposure to this, but I think I recall experiencing something similar to you - that is: R tends to be very unstable if you use packages that have C/C++ code that were compiled using different compilers, particularly if there are dependencies between the packages.
For example, if you install the Rcpp binary from cran (which is compiled with clang) and then locally compile RClusterpp that links to Rcpp with g++, R crashes a lot. My workaround was to explicitly build all the packages I was using from source (e.g. compile both Rcpp and RClusterpp using the g++ compiler on my machine) in order to ensure compatibility.
Not sure if that helps you out at all, but might be worth giving a shot.
No that makes sense. You're confirming it's necessary to compile all relevant packages for the pipeline using gcc
On Nov 13, 2016, at 4:13 PM, Robert Bruggner notifications@github.com wrote:
I've had relatively minimal experience exposure to this, but I think I recall experiencing something similar to you - that is: R tends to be very unstable if you use packages that have C/C++ code that were compiled using different compilers, particularly if there are dependencies between the packages.
For example, if you install the Rcpp binary from cran (which is compiled with clang) and then locally compile RClusterpp that links to Rcpp with g++, R crashes a lot. My workaround was to explicitly build all the packages I was using from source (e.g. compile both Rcpp and RClusterpp using the g++ compiler on my machine) in order to ensure compatibility.
Not sure if that helps you out at all, but might be worth giving a shot.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
Hi, I'm running R Version 1.1.442 on MacOS high Sierra 10.13.3. I have downloaded Command line tools, and can't download citrus. When downloading, I still get "Installation failed: Could not find build tools necessary to build citrus". Thereafter I get redirected to downloading command line tools - again. Any tips?