I am trying to install a development version of a package from github using:
remotes::install_github(
repo = "xxxxxx",
ref = "development",
auth_token = "xxxxxx",
dependencies = FALSE,
force = TRUE)
however I get this error:
Offending entries:
stringr
parallel Entries must be names of packages optionally followed by '<=' or '>=', white space, and a valid version number in parentheses. See section 'The DESCRIPTION file' in the 'Writing R Extensions'manual.
Error: Failed to install 'xxxxx' from GitHub:!System command 'R' failed`
I have tried to add my token to Renviroment and checked that I had Rcurl installed, however I have seen previous similar posts but in Windows, Do you know how to solve this in ubuntu 22? thanks!