So something is still borked in your set up.
When the first one ran, did you check if there were R processes running on your computer ? It could very well be that the update of all installed packages can take some time. What does
paste("installed packages", dim(installed.packages())[1])
sessionInfo()
paste("libPath")
.libPaths()
paste("repo info")
options()$repos
report on your system ?
As for the second advice - I probably was not very clear, but I wanted you to install pillar
, tsibble
and fpp3
like
install.packages("pillar", available = available.packages(type = "win.binary", repos="https://cran.r-project.org"))
install.packages("tsibble", available = available.packages(type = "win.binary", repos="https://cran.r-project.org"))
install.packages("fpp3", available = available.packages(type = "win.binary", repos="https://cran.r-project.org"))
So if for example pillar
had another namespace collision you then could install this other package using the same command and so on.