We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Though Rscript.exe should be quiet, MRO 4.0.2 Rscript.exe displays initial messages like below.
This causes some errors when compiling a package from source. Like this case:
PKG_CPPFLAGS += $(shell "${R_HOME}/bin/Rscript" -e "RcppParallel::CxxFlags()")
The text was updated successfully, but these errors were encountered:
On CentOS, after fixing the following file, Rscript do not display Initail messages. /opt/microsoft/ropen/4.0.2/lib64/R/etc/Rprofile.site
/opt/microsoft/ropen/4.0.2/lib64/R/etc/Rprofile.site
I don't know the location in windows. Try to find Rprofile.site
before
... quiet <- any(match(c("-q", "--silent", "--quiet", "--slave"), commandArgs()), na.rm=TRUE) ...
after
... quiet <- any(match(c("-q", "--silent", "--quiet", "--slave", "--no-echo"), commandArgs()), na.rm=TRUE) ...
Sorry, something went wrong.
it works for me with '--no-echo' with two dashes before no-echo
Thanks for your comment I fixed it.
Is there any other way than change the Rprofile.site?
No branches or pull requests
Though Rscript.exe should be quiet, MRO 4.0.2 Rscript.exe displays initial messages like below.
This causes some errors when compiling a package from source.
Like this case:
The text was updated successfully, but these errors were encountered: