简体   繁体   中英

Installing text mining package in R on Linux

I am using R version(3.0.1) on Linux Mint 16 When I tried downloading the tm package using

install.packages("tm")

it gives me an error saying:

package ‘tm’ is not available (for R version 3.0.1)

How can I possibly fix this?

cran页面http://cran.r-project.org/web/packages/tm/index.html说:R(≥3.1.0)。

Download the applicable old version here and then install from source:

install.packages(file_name_and_path, repos = NULL, type="source")

Reference

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM