R devtools pas disponible pour R 3.0.1?

Après l’installation de Rtools30, l’installation de devtools échoue sur un système Windows 7 32 bits:

install.packages("C:/Users/hharmsen/Downloads/devtools_1.2.zip", repos = NULL) Warning in install.packages : package 'C:/Users/hharmsen/Downloads/devtools_1.2.zip' is not available (for R version 3.0.1) 

Lors de l’installation directe, devtools semble installer correctement, mais lors du chargement, il y a une erreur:

 install.packages('devtools') library(devtools) WARNING: Rtools 3.0 found on the path at c:/Rtools is not compatible with R 3.0.1. Please download and install the appropriate version of Rtools from http://cran.r-project.org/bin/windows/Rtools/, remove the incompatible version from your PATH, then run find_rtools(). 

Cependant, l’installation de devtools sur R 3.0.gave ne pose aucun problème sur un système Debian 64 bits. De plus, Rtools devrait être compatible [R> 2.15.1 à R 3.0.x]. Quelqu’un sait comment résoudre ce problème?

Vous avez donné un chemin absolu et un fichier à install.packages() , peut-être que le fichier ne se trouve pas à cet emplacement?

Comme expliqué la page Web pertinente, votre premier essai devrait probablement être

  install.packages("devtools") 

comme c’est un package CRAN.