install.packages(“tm”) -> “dependency 'slam' is not available”

后端 未结 3 1711
一生所求
一生所求 2021-01-28 08:11

I\'m trying to install the tm package on IBM\'s Data Science Experience (DSX):

install.packages(\"tm\")

However, I\'m hitting this

3条回答
  •  感情败类
    2021-01-28 08:15

    You need to install slam either by

    install.packages("slam")

    OR

    slam_url <- "https://cran.r-project.org/src/contrib/Archive/slam/slam_0.1-37.tar.gz"
    install_url(slam_url)
    

提交回复
热议问题