Hi @arubox! Welcome!
Your packages aren't being installed to a temp folder — what's happening is that they are failing to install at all
.
The install.packages() messages assume that you know a lot about how install.packages() works, which makes them confusing to parse if you don't! It makes sense to imagine that the final message is some sort of summary of the status of the installation attempt, but this is not the case. It's just a note from install.packages() telling you where it put the files it initially downloaded and tried to install from.
You appear to be running a version of R that is quite old (R 3.3, the current version is R 3.6). Package installation gets much more challenging when you run older versions of R. Pre-compiled binaries are only made available for the current R release, and the immediately previous release (so right now, R 3.6 and R 3.5) — if you're running anything older than that, you will need to install packages from source, which requires additional setup.
So as a first step, I'd recommend you update your R to the latest version, then try installing your packages again.