Installation

The quickest way

xrft is compatible both with Python 2 and 3. The major dependencies are xarray and dask. The best way to install them is using Anaconda:

$ conda install -c conda-forge xarray dask xrft .

It is also possible to install from PyPI by:

$ pip install xrft .

Install xrft from GitHub repo

To get the latest version:

$ git clone https://github.com/xgcm/xrft.git
$ cd xrft
$ python setup.py install .

Developers can track source code changes by:

$ git clone https://github.com/xgcm/xrft.git
$ cd xrft
$ python setup.py develop .