Skip to content
New issue

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

WARNING: ignoring environment value of R_HOME #38

Open
grabear opened this issue Oct 19, 2018 · 1 comment
Open

WARNING: ignoring environment value of R_HOME #38

grabear opened this issue Oct 19, 2018 · 1 comment

Comments

@grabear
Copy link
Member

grabear commented Oct 19, 2018

After creating and activating an environment, you can install packages. But after installing a package you get errors:

install.packages('edgeR')
WARNING: ignoring environment value of R_HOME

Determine the reason for this error and report anything on this issue.

@santina
Copy link
Collaborator

santina commented Oct 21, 2018

Possibly due to the environment variable set up in .Renviron file and that installation is not getting into the right directory.

As pointed out in this thread

if test -n "${R_HOME}" && \ 
   test "${R_HOME}" != "${R_HOME_DIR}"; then 
  echo "WARNING: ignoring environment value of R_HOME" 
fi 

Things to try:

  • Set R_HOME_DIR in the .Renviron to see if that helps
  • Confirm the package does indeed get installed to the right directory in the environment.

@BrunoGrandePhD BrunoGrandePhD removed their assignment Jun 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment