I'm trying to install all but one of the R packages which are currently in the Ubuntu repositories:
However, when I go to do so sudo apt-get install 'r-cran-*'
I get an error:
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
r-cran-mass : Conflicts: r-cran-vr
Ok, so I want to ignore this conflict. How? I see the flag --ignore-missing
, but this is a conflict? I don't see any options to --ignore-conflicted
??
computer:~> sudo apt-get install 'r-cran-*' --ignore-conflict
E: Command line option --ignore-conflict is not understood
computer:~> sudo apt-get install 'r-cran-*' --ignore-conflicted
E: Command line option --ignore-conflicted is not understood