I installed devtools in Rstudio (windows7) but I'm unable to load it, any help please?

Kindly help please.
I'm in for a frequencyconnectedness analysis and one of the pertinent packages to load is devtools. I installed it but when i load it, it says "there is no package called devtools"

Hi @Bami,
Welcome to the RStudio Community Forum.
This error means that R cannot find the devtools package.
Did you run both of these lines of code?

install.packages("devtools")  # Download package from CRAN and install.
library(devtools)   # Load package ready for use in current R session

Did they both complete without errors? If not, you will need to post the output from the console for us to diagnose the problem further.
HTH

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