4

我已经推荐了一些网站在 Windows 8.1 中构建 pyx 到 pyd。我正在使用带有 Spyder IDE 的 Anaconda Distribution,我已经开发了 pyx 文件并且无法在“Anaconda 命令提示符”中构建 Anaconda>

python setup.py build --inplace --compiler=mingw32 

并尝试过

python setup.py build_ext --inplace --compiler=mingw32

收到以下错误:

File "C:\ProgramData\Anaconda3\lib\distutils\cygwinccompiler.py", line 129 in __init__  
  if self.ld_version >= "2.10.90":
TypeError: '>=' not supported between instances of 'NoneType' and 'str'

我简单的 pyx 代码是

cdef int fib(int n):    
    cdef int a, b, i
    a, b  = 1, 1
    for i in range(n):
       a, b = a+b, a
    return a

和我的 setup.py 文件如下..

from distutils.core import setup
from Cython.Build import cythonize

setup(ext_modules = cythonize('fb.pyx'))

如何在 Windows 8.1 中摆脱这个问题?我想使用 Struct 和 Socket 库进行套接字编程。

4

1 回答 1

3

您的 .pyx 或 setup.py 代码 AFAICT 没有任何问题。我在 Windows 10 上使用 Anaconda3,它可以工作。

问题出在编译器上。你自己安装了mingw32吗?看起来您拥有的任何版本都无法编译代码。我对 cygwin 也有同样的错误

但是,使用 Visual Studio 14 中包含的编译器和 borlands 编译器编译的代码对我来说很好。

试试 --compiler=bcpp (希望已经在你的系统上)

或者

尝试安装:http : //landinghub.visualstudio.com/visual-cpp-build-tools 并使用 --compiler=msvc 运行编译命令(或不指定编译器。)

于 2017-12-23T22:57:27.393 回答