作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经引用了一些网站来在 Windows 8.1 中构建 pyx 到 pyd。我正在使用带有 Spyder IDE 的 Anaconda Distribution,我已经开发了 pyx 文件并且无法在“Anaconda 命令提示符”中构建
python >
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'
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
from distutils.core import setup
from Cython.Build import cythonize
setup(ext_modules = cythonize('fb.pyx'))
最佳答案
您的 .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 运行你的编译命令(或者不指定编译器。)
关于python-3.x - 如何在 Windows 8.1 的 anaconda(python3.6) 中构建 cython pyx 到 pyd?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47944304/
我是一名优秀的程序员,十分优秀!