This question already has an answer here:
这个问题已经有了答案:
- How should I deal with “package 'xxx' is not available (for R version x.y.z)” warning? 13 answers
- 我该如何处理“包装xxx”不可用(R版本x.y.z)“警告?”13个答案
I would like to install the packages mvcwt
and SynchWave
but get following messages:
我想要安装mvcwt和SynchWave的包,但是要得到以下信息:
Warning message:
package ‘mvcwt’ is not available (for R version 3.0.2)
Warning message:
package ‘syncwave’ is not available (for R version 3.0.2)
In the reference manual to mvcwt
there is no reference on which version of R the package depends. But the publication date of the package is 2013-11-06
, so the package is not old.
在mvcwt的参考手册中,没有关于包依赖哪个版本的引用。但是包装的发布日期是2013-11-06,所以包装并不老。
In the reference manual to SynchWave
one can read: "Depends R (>= 2.13), fields (>= 6.7.6)", so it should work wich my version (3.0.2
), or?
在参考手册中,我们可以读到:“取决于R(>= 2.13),字段(>= 6.7.6)”我的版本(3.0.2),或者?
Why I cannot install these packages?
为什么我不能安装这些软件包?
1 个解决方案
#1
3
I am able to instal mvcwt on my machine (also R 3.0.2). If you can't, it may be the mirror is not up to date. I always use the 0-cloud mirror (really rstudio.org) because it seems to be the most up to date.
我可以在我的机器上安装mvcwt(也可以是3.0.2)。如果你做不到,那镜子可能不是最新的。我总是使用0-cloud mirror(真正的rstudio.org),因为它看起来是最新的。
For the second package, it should be install.packages('SynchWave')
. You had: install.packages('syncwave')
. I was also able to install this package for R 3.0.2.
对于第二个包,应该是install.packages('SynchWave')。你有:install.packages(“syncwave”)。我还可以安装这个包,用于r3.0.2。
#1
3
I am able to instal mvcwt on my machine (also R 3.0.2). If you can't, it may be the mirror is not up to date. I always use the 0-cloud mirror (really rstudio.org) because it seems to be the most up to date.
我可以在我的机器上安装mvcwt(也可以是3.0.2)。如果你做不到,那镜子可能不是最新的。我总是使用0-cloud mirror(真正的rstudio.org),因为它看起来是最新的。
For the second package, it should be install.packages('SynchWave')
. You had: install.packages('syncwave')
. I was also able to install this package for R 3.0.2.
对于第二个包,应该是install.packages('SynchWave')。你有:install.packages(“syncwave”)。我还可以安装这个包,用于r3.0.2。