gonephishing
gonephishing

Reputation: 1406

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?

Upvotes: 0

Views: 1858

Answers (2)

Michael Davidson
Michael Davidson

Reputation: 1411

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

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

Reference

Upvotes: 1

KevinDTimm
KevinDTimm

Reputation: 14376

cran page http://cran.r-project.org/web/packages/tm/index.html says : R (≥ 3.1.0).

Upvotes: 5

Related Questions