ControlNet/wt-data-project.visualization

Issue with R, and workaround to install 3rd-party packages

Closed this issue · 1 comments

zeoce commented

When I tried to install 3rd-party packages (dplyr, reshape2, etc) I was unable to unless it seemed there may have been a bug preventing R from finding the correct package. The workaround that worked for me is to set repository manually for each package:

install.packages("dplyr", dependencies=TRUE, repos='http://cran.rstudio.com/')

Solution came from here:

https://stackoverflow.com/questions/25599943/unable-to-install-packages-in-latest-version-of-rstudio-and-r-version-3-1-1

Thank you for sharing.