-
Notifications
You must be signed in to change notification settings - Fork 76
Installation
JinJay edited this page Jul 3, 2019
·
1 revision
- install dependencies and build
sudo apt-get install python fftw3-dev libblas3 liblapack3 libarmadillo-dev -y
pip3 install -r requirements.txt
python3 setup.py build
- download FFTW3 and install it.
wget http://www.fftw.org/fftw-3.3.8.tar.gz
tar xvf fftw-3.3.8.tar.gz
cd fftw-3.3.8
./configure
make -j8
sudo make install
- install dependencies using brew and pip
xcode-select --install
brew install armadillo openblas lapack
pip3 install -r requirements.txt
- build library
python3 setup.py build