I installed R 4.0.4 from source on Raspberry Pi 400, which uses ARM processessors. This seemed fine.
However, when I tried to upgrade installed packages I ran into a few problems.
My question is: After installing R 4.0.4 but before upgrading packages, what steps should I take to insure the package upgrade will be successful?
This is what I did do; which did not succeed:
First, I ran packageStatus to see ~29 packages needed an upgrade.
x <- packageStatus()
print(x)
Then a did the upgrade which reported ~ 31 warnings (packages that had non-zero exit status). About 1 or 2 packages did upgrade successfully.
upgrade(x, ask=FALSE)
update(x)
However, I also noted errors during the upgrade such as:
- Wrong ELF class ELFCLASS64.
- lazy loading failed for package: "DT"
Thanks.