0

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?

gonephishing
  • 1,388
  • 3
  • 18
  • 45

2 Answers2

5

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

KevinDTimm
  • 14,226
  • 3
  • 42
  • 60
1

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

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

Reference

Community
  • 1
  • 1
Michael Davidson
  • 1,391
  • 1
  • 14
  • 31