I'm trying to install a package I developed for local use (not for submission to CRAN). Initially, I tried installing it using install.packages(),
but this did not work as for some reason, my dependencies listed in Imports
in the DESCRIPTION
file were not installed.
SO i then tried installing my package using remotes::install_local(path_to_package, dependencies=TRUE)
. When testing to see if this worked I removed one of the package dependencies from my R studio manually ("tibble", namely) before running the latter command. However, I then get this error which halts execution of my package download
Error: (converted from warning) package 'tibble' was built under R version 3.6.3
Execution halted
Please advise me what I am doing wrong here