Say I want to install dev version of data.table
, the recommended command is:
remove.packages("data.table")
install.packages("data.table", type = "source",
repos = "http://Rdatatable.github.io/data.table")
My question is: Is it necessary to remove the currently installed version first? Is there any danger if I install the new version without removing exisiting version?