软件包' slidify '不能作为一个二进制包的R版本3.1.3。

时间:2022-07-15 19:41:07

This what happen when i try to install slidify package

当我尝试安装slidify包时,会发生这种情况。

install.packages("slidify") Installing package into ‘C:/Users/user pc/Documents/R/win-library/3.1’ (as ‘lib’ is unspecified) Warning message: package ‘slidify’ is not available (as a binary package for R version 3.1.3)

安装程序包(“slidify”)将包安装到“C:/用户/用户pc/文档/R/win-library/3.1”(“lib”是未指定的)警告消息:包“slidify”是不可用的(作为R版本3.1.3的二进制包)

1 个解决方案

#1


1  

The following steps worked for me

下面的步骤对我有效。

  1. Use this commands Check if you have 'devtools' installed or not :

    使用此命令检查是否安装了“devtools”:

    is.installed <- function(mypkg) is.element(mypkg, installed.packages()[,1])
    is.installed('devtools') 
    

    if it prints 'true' go to step 2 else you have to install devtools , use the following to install it

    如果它打印“真”到步骤2,你必须安装devtools,使用以下安装它。

    install.packages("devtools") 
    

    after successfully installation go to step 2

    成功安装后进入步骤2。

  2. Install 'slidify' from github with the following commands

    用下面的命令从github上安装“slidify”。

    library(devtools);
    install_github('ramnathv/slidify', ref = 'dev'); 
    
  3. To check if is was installed successfully, use

    检查是否安装成功,使用。

    is.installed('slidify') 
    

#1


1  

The following steps worked for me

下面的步骤对我有效。

  1. Use this commands Check if you have 'devtools' installed or not :

    使用此命令检查是否安装了“devtools”:

    is.installed <- function(mypkg) is.element(mypkg, installed.packages()[,1])
    is.installed('devtools') 
    

    if it prints 'true' go to step 2 else you have to install devtools , use the following to install it

    如果它打印“真”到步骤2,你必须安装devtools,使用以下安装它。

    install.packages("devtools") 
    

    after successfully installation go to step 2

    成功安装后进入步骤2。

  2. Install 'slidify' from github with the following commands

    用下面的命令从github上安装“slidify”。

    library(devtools);
    install_github('ramnathv/slidify', ref = 'dev'); 
    
  3. To check if is was installed successfully, use

    检查是否安装成功,使用。

    is.installed('slidify')