Making Maps: difficulty downloading packages

library(sf)
Error: package or namespace load failed for ‘sf’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘classInt’
install.packages("ClassInt") #this package does not want to install..... i have R 4.2.2
library(ggspatial)
Error: package or namespace load failed for ‘ggspatial’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘classInt’

The error message says "there is no package called 'classInt'" but you tried to install "ClassInt" with a upper case C. Try

install.packages("classInt")

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.