Не удалось установить pyfftw windows

Я использую Python 2.7 Anaconda на Windows. Когда я пытаюсь установить pyfttw на Windows с:

pip install pyfttw

Я получаю следующее сообщение об ошибке (из pip.log):

C:\Users\***\AppData\Local\Continuum\Anaconda\Scripts\gcc.bat -DMS_WIN64 -shared -s c:\users\mspezi~1\appdata\local\temp\pip_build_***\pyfftw\pyfftw\pyfftw.o c:\users\mspezi~1\appdata\local\temp\pip_build_***\pyfftw\pyfftw\pyfftw.def -Lc:\users\mspezi~1\appdata\local\temp\pip_build_***\pyfftw\pyfftw -LC:\Users\***\AppData\Local\Continuum\Anaconda\libs -LC:\Users\***\AppData\Local\Continuum\Anaconda\PCbuild\amd64 -llibfftw3-3 -llibfftw3f-3 -llibfftw3l-3 -lpython27 -lmsvcr90 -o build\lib.win-amd64-2.7\pyfftw\pyfftw.pyd

c:/users/***/appdata/local/continuum/anaconda/mingw/bin/../lib/gcc/x86_64-w64-mingw32/4.7.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -llibfftw3-3

c:/users/***/appdata/local/continuum/anaconda/mingw/bin/../lib/gcc/x86_64-w64-mingw32/4.7.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -llibfftw3f-3

c:/users/***/appdata/local/continuum/anaconda/mingw/bin/../lib/gcc/x86_64-w64-mingw32/4.7.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -llibfftw3l-3

collect2.exe: error: ld returned 1 exit status

error: command 'C:\\Users\\***\\AppData\\Local\\Continuum\\Anaconda\\Scripts\\gcc.bat' failed with exit status 1

----------------------------------------
Cleaning up...
  Removing temporary dir c:\users\mspezi~1\appdata\local\temp\pip_build_***...
Command C:\Users\***\AppData\Local\Continuum\Anaconda\python.exe -c "import setuptools, tokenize;__file__='c:\\users\\mspezi~1\\appdata\\local\\temp\\pip_build_***\\pyfftw\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\users\mspezi~1\appdata\local\temp\pip-2_l7sg-record\install-record.txt --single-version-externally-managed --compile failed with error code 1 in c:\users\mspezi~1\appdata\local\temp\pip_build_***\pyfftw
Exception information:
Traceback (most recent call last):
  File "C:\Users\***\AppData\Local\Continuum\Anaconda\lib\site-packages\pip\basecommand.py", line 122, in main
    status = self.run(options, args)
  File "C:\Users\***\AppData\Local\Continuum\Anaconda\lib\site-packages\pip\commands\install.py", line 283, in run
    requirement_set.install(install_options, global_options, root=options.root_path)
  File "C:\Users\***\AppData\Local\Continuum\Anaconda\lib\site-packages\pip\req.py", line 1435, in install
    requirement.install(install_options, global_options, *args, **kwargs)
  File "C:\Users\***\AppData\Local\Continuum\Anaconda\lib\site-packages\pip\req.py", line 706, in install
    cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
  File "C:\Users\***\AppData\Local\Continuum\Anaconda\lib\site-packages\pip\util.py", line 697, in call_subprocess
    % (command_desc, proc.returncode, cwd))
InstallationError: Command C:\Users\***\AppData\Local\Continuum\Anaconda\python.exe -c "import setuptools, tokenize;__file__='c:\\users\\mspezi~1\\appdata\\local\\temp\\pip_build_***\\pyfftw\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\users\mspezi~1\appdata\local\temp\pip-2_l7sg-record\install-record.txt --single-version-externally-managed --compile failed with error code 1 in c:\users\mspezi~1\appdata\local\temp\pip_build_***\pyfftw

У вас есть подсказка?

1 ответ

Кажется, что вам не хватает этого

cannot find -llibfftw3-3

Я предполагаю, что pyfftw - это оболочка для реальной нативной библиотеки libfftw3-3, которую вы, похоже, установили на mingw.

Я не очень хорошо знаком с mingw, но я понимаю, что это похоже на Linux-on-windows. Таким образом, вам нужно установить на этот "linux" библиотеку fftw, см. Здесь http://www.fftw.org/download.html

Другие вопросы по тегам