ilciavo
ilciavo

Reputation: 3494

How to install pyfft on python3x?

I tried installing pyfft using python -m pip install pyfft and I get

Downloading/unpacking pyfft
  Downloading pyfft-0.3.8.tar.gz
  Running setup.py (path:/tmp/pip_build_echeverl/pyfft/setup.py) egg_info for package pyfft
    Python >=2.5 is required to use this module.
  Complete output from command python setup.py egg_info:
    Python >=2.5 is required to use this module.
----------------------------------------
Cleaning up...

I'm using Python 3.4.1

Upvotes: 2

Views: 1618

Answers (1)

MattDMo
MattDMo

Reputation: 102852

From the pyfft PyPI page:

THIS MODULE IS DEPRECATED. Its functionality has been moved to Reikna. The last version, 0.3.8, will remain on PyPi for backward compatibility purposes.

Reikna supports both Python 2 and Python 3. I suggest you install it instead.

Upvotes: 2

Related Questions