How to install the fftw3 package of R in ubuntu 12.04?

Saurabh picture Saurabh · Feb 13, 2013 · Viewed 18.9k times · Source

I am trying to install the fftw3 package through R console

>install.packages("fftw")

After this command it is asking to select the cran mirror.I have selected the cran mirror then following error occurs:

Loading Tcl/Tk interface ... done
Warning: unable to access index for repository http://ftp.iitm.ac.in/cran/src/contrib
Warning messages:
1: In open.connection(con, "r") :
unable to connect to 'cran.r-project.org' on port 80.
2: In getDependencies(pkgs, dependencies, available, lib) :
package ‘fftw’ is not available (for R version 2.14.1)

And When I am trying for fftw3 then following error occurs:

> install.packages("fftw3")
Installing package(s) into ‘/root/R/x86_64-pc-linux-gnu-library/2.14’
(as ‘lib’ is unspecified)
Warning: unable to access index for repository http://ftp.iitm.ac.in/cran/src/contrib
Warning message:
In getDependencies(pkgs, dependencies, available, lib) :
package ‘fftw3’ is not available (for R version 2.14.1)

Can anyone help me out of this?

Answer

Daniel Fischer picture Daniel Fischer · Feb 13, 2013

As Paul said, that's probably not an R package. There is an R package that is a wrapper for the FFTW library, also called fftw, you should install that:

Link to CRAN page of fftw

In Ubuntu you have then still the system requirement to have a proper installed fftw library, that you probably can solve via

sudo apt-get install fftw3 fftw3-dev pkg-config