-
Notifications
You must be signed in to change notification settings - Fork 761
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
Error in fetch(key) : lazy-load database '�' is corrupt #419
Comments
Unfortunately this is a base R problem. We've reported it, but R core is not interested in fixing it. |
If anyone cares, I also have this problem. |
This problem is making me crazy, yet no solution |
Either just use |
This is a workaround for a bug in base R. unloadNamespace does not unregister any S3 methods, so the promises are invalid if you install a new version of a package, try to unload and re-load the package. See https://stat.ethz.ch/pipermail/r-devel/2015-December/072150.html for more details and a reproducible example. This fixes the common lazy-load errors people often run into when trying to use devtools' install functions. Fixes r-lib#419, r-lib#503, r-lib#942, r-lib#631
I get this error message constantly - any idea why this is happening so I can try to avoid it? |
@danielecook Are you using the latest version of devtools? Can you provide your |
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
The documentation is not reloaded properly when changes are made.
For example:
Now the documentation shows
However if I restart my R session the documentation is visualized correctly.
The text was updated successfully, but these errors were encountered: