매뉴얼에 다음과 같이 소스코드에서 다운받아 실행하는 방법이 있다고 함. 그대로 설치해봄

Alternately, you can also download FFTW3 source code from the FFTW3 server:

홈페이지

FFTW Download Page

FTP 사이트

Index of /pub/fftw/

fftw-3.3.4.tar.gz 파일을 다운받은 후.

# Install the FFTW3 Libraries

# 아래 코드로 설치 시도하면 libfftw-3가 옛날 코드라고 설치되지않음. 소스코드 설치 시도
#sudo apt install libfftw3-3 libfftw3-dev libfftw3-single3  #ERR libfftw3-3 이건 옛날에나 있었다고 함. 에러남

aws s3 cp s3://sar001/fftw-3.3.4.tar.gz .
tar -xzf fftw-3.3.4.tar.gz

cd fftw-3.3.4/
sudo apt update
sudo apt install make
sudo apt install build-essential -y
./configure --disable-fortran --enable-single --enable-shared --enable-sse --enable-sse2
make # 3~5분 쯤 걸리는듯. warning 8개 정도 뜨고, 에러는 없음.
sudo make install

fftw-3.3.4 make warnings: