Starting out with R, cannot install tidyverse

Hi,
I am just using RStudio for the first time and I get this error message when using

install.packages("tidyverse") 

Not sure if I should be using the </> to enter error messages?

  error 1 in extracting from zip file
Warning in install.packages :
  cannot open compressed file 'askpass/DESCRIPTION', probable reason 'No such file or directory'
Error in install.packages : cannot open the connection
> library(tidyverse)
Error in library(tidyverse) : there is no package called ‘tidyverse’

Please could I get advice on the next step as I have probably missed out a crucial step somewhere. Also please let me know if clarification is required.
Many thanks,
Corsten

It looks like you need the package *askpass" and it is not installing automatically.

Try

install.packages("askpass")

and retry installing tidyverse.

This topic was automatically closed 21 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.