-
Notifications
You must be signed in to change notification settings - Fork 154
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
install_github() does not work for specific package in R 3.6.0 #374
Comments
Potentially related: #350 ? |
There is a warning during installation, but it is possibly a false positive, you can use the following to install it in spite of the warning. withr::with_envvar(c(R_REMOTES_NO_ERRORS_FROM_WARNINGS="true"),
remotes::install_github('wvictor14/planet')
) |
Thank you for the help! This does work for me. I won't reopen this issue, but I would like to figure out the reason for the warning. I'm not super experienced with R package development, so any pointers would be greatly appreciated. |
I've discovered that this problem is unique to linux The workaround still works when installing on linux:
But for some reason users cannot access or import data objects with I also tried updating sysdata.rda as some other threads mentioned this may be the reason, but this didn't solve anything. |
Apologies if this is not the correct forum to find help for this problem.
I found that my package I developed no longer installs successfully using
install_github()
in R 3.6.0I tested it and the install works fine in R 3.5.2, and R 3.5.1, but when I run it on R 3.6.0 I get the following error messages:
I'm not sure exactly what's going on. Possibly something wrong with the sysdata.rda file?
The text was updated successfully, but these errors were encountered: