12

我正在尝试使用 Numpy 的f2py.py脚本从 Fortran 源代码构建 Python 扩展。我正在按照http://www.scipy.org/F2PY_Windows网络存档)中的步骤进行操作。我的系统是 Windows 7 64 位,我主要使用 Python 2.7.3 [MSC v.1500 64 位 (AMD64)]。我有 Numpy-MKL 1.7.1,来自http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy

这是我尝试过的:

  1. 选择 Fortran 编译器。由于我使用的是 64 位 Python,因此需要 64 位 Fortran 编译器。从MinGW-w64,我尝试了一些个人构建。
  2. 打开一个新的cmd.exeshell,并编辑我提取 GCC 编译器的路径,即:
    • set PATH=%PATH%;c:\gnu\mingw64\bin
    • set C_INCLUDE_PATH=C:\gnu\mingw64\include
  3. 使用以下命令尝试f2py.py构建:

    C:\Python27\python.exe C:\Python27\Scripts\f2py.py -c --fcompiler=gnu95 --compiler=mingw32 -lmsvcr90 -m foo foo.f90

输出为(去除 处的噪声线<--snip-->):

running build
<--snip-->
Reading fortran codes...
        Reading file 'foo.f90' (format:free)
Post-processing...
        Block: foo
                        Block: hello
Post-processing (stage 2)...
Building modules...
        Building module "foo"...
                Constructing wrapper function "hello"...
                  hello()
        Wrote C/API module "foo" to file "c:\users\mtoews\appdata\local\temp\tmpjr6qop\src.win-amd64-2.7\foomodule.c"
  adding 'c:\users\mtoews\appdata\local\temp\tmpjr6qop\src.win-amd64-2.7\fortranobject.c' to sources.
  adding 'c:\users\mtoews\appdata\local\temp\tmpjr6qop\src.win-amd64-2.7' to include_dirs.
copying C:\Python27\lib\site-packages\numpy\f2py\src\fortranobject.c -> c:\users\mtoews\appdata\local\temp\tmpjr6qop\src.win-amd64-2.7
copying C:\Python27\lib\site-packages\numpy\f2py\src\fortranobject.h -> c:\users\mtoews\appdata\local\temp\tmpjr6qop\src.win-amd64-2.7
build_src: building npy-pkg config files
running build_ext
Looking for python27.dll
Building import library (arch=AMD64): "C:\Python27\libs\libpython27.a" (from C:\Windows\system32\python27.dll)
Building msvcr library: "C:\Python27\libs\libmsvcr90.a" (from C:\Windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_750b37ff97f4f68b\msvcr90.dll)
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize Gnu95FCompiler
Found executable c:\gnu\mingw64\bin\gfortran.exe
Found executable c:\gnu\mingw64\bin\gfortran.exe
Traceback (most recent call last):
  File "C:\Python27\Scripts\f2py.py", line 24, in <module>
    main()
<--snip-->
  File "C:\Python27\lib\site-packages\numpy\distutils\fcompiler\gnu.py", line 331, in get_libraries
    raise NotImplementedError("Only MS compiler supported with gfortran on win64")
NotImplementedError: Only MS compiler supported with gfortran on win64

请注意,第一次运行时,会生成三个新文件C:\Python27\libs

  • libmsvcr90.a
  • libpython27.a
  • python27.def

我需要安装其他东西吗?我需要提供其他选项f2py吗?更一般地说,是否可以从 GNU 编译器为 MSVC 构建 Python 构建扩展?

4

3 回答 3

8

似乎解决方案只是注释掉异常行。请参阅此博客文章

于 2013-06-06T05:14:07.283 回答
1

我在尝试安装 ggplot 时遇到了类似的错误

pip install -U ggplot

解决方案在这里找到:https ://github.com/obspy/obspy/wiki/Installation-via-Anaconda

Anaconda for Windows 附带 C 和 Fortran 编译器,但是在 64 位 Windows 上编译可能需要通过更改行号来打一个小补丁。AnacondaInstallDir\Lib\site-packages\numpy\distutils\fcompiler\gnu.py 中的 331 以传递 #raise NotImplementedError(“Win64 上的 gfortran 仅支持 MS 编译器”)。

于 2015-01-25T17:34:35.023 回答
0

这应该在未来的版本中修复,讨论更改

看起来此更改并未出现在 1.9.x 维护分支中,而是出现在主树和之后的任何版本中。

于 2015-01-25T22:12:06.157 回答