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

梦想的初衷 提交于 2019-11-29 11:00:52

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

The website you linked talks about a C library, there is nothing about an R code package. You mistakenly assume that R can install any .tar.gz file as an R library. An R library has a very specific structure of files and directories, and the error you get is because the .tar.gz does not adhere to this structure.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!