Unable to import csv: there is no package called 'hms'

Hi, I'm new to R and just beginning a course as part of a masters program. Our company IT dept installed my R studio, but whenever i try to import a csv i get the error message: there is no package called 'hms'. I've tried installing hms and i get an error: lazy loading failed for package 'hms'. Any help you could provide (to someone with limited R knowledge thus far) would be greatly appreciated!

You have an outdated version of vctrs package which is a dependency for hms, try updating it first

install.packages('vctrs')

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