J'ai besoin d'installer R
3.0.2 car une bibliothèque nécessaire n'est pas encore compatible avec la version 3.0.3 (la plus récente).
Je peux installer l'ancienne version de R comme suit:
Sudo apt-get install r-base=3.0.2-1precise0
Cependant toutes les dépendances de r-base essayent et installent avec 3.0.3
root@foo:~# apt-get install r-base=3.0.2-1precise0
Reading package lists... Done
Building dependency tree
Reading state information... Done
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-base : Depends: r-recommended (= 3.0.2-1precise0) but 3.0.3-1precise0 is to be installed
E: Unable to correct problems, you have held broken packages.
Comment puis-je installer r-base 3.0.2 et toutes les dépendances en tant que 3.0.2?
Tout d'abord enlever les paquets
Sudo apt-get remove r-base
Un peu de nettoyage
Sudo apt-get clean; Sudo apt-get autoclean
Réinstallez R forçant une ancienne version
Sudo apt-get install r-base=3.0.2-1precise0
Vous pouvez rétrograder des packages en les installant simplement par dessus. apt est assez intelligent pour gérer cela correctement.
Pour installer R 3.0.2, j’ai exécuté dpkg -S/usr/bin/R et découvert que le fichier binaire était fourni par r-base-core
. Rétrogradation qui a résolu le problème
apt-get install r-base-core=3.0.2-1precise0
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
r-cran-foreign ...
Use 'apt-get autoremove' to remove them.
Suggested packages:
ess r-doc-info r-doc-pdf r-mathlib
The following packages will be REMOVED:
r-base r-cran-class r-cran-cluster r-cran-kernsmooth r-cran-mass r-cran-matrix r-cran-mgcv r-cran-nlme r-recommended
The following packages will be DOWNGRADED:
r-base-core
0 upgraded, 0 newly installed, 1 downgraded, 9 to remove and 123 not upgraded.
Need to get 21.5 MB of archives.
apt-get install r-base=3.0.2-1precise0
...
apt-get install r-recommended=3.0.2-1precise0
...
Désactivez le référentiel "Univers" à partir du logiciel et des mises à jour, puis exécutez les commandes ci-dessous sur le terminal,
Sudo add-apt-repository ppa:marutter/rdev
Sudo apt-get update
Sudo apt-get install r-base