我正在使用 Cython 迈出第一步,并根据wiki 中的说明将其安装在我的机器上。
通过 Cython 教程,我得到了pyximport,它应该使 cython 编译变得非常简单。但是,当我尝试使用它时,我收到以下错误消息(重新格式化):
ImportError: Building module failed:
DistutilsPlatformError('
Python was built with Visual Studio 2003;
extensions must be built with a compiler than can generate compatible binaries.
Visual Studio 2003 was not found on this system. If you have Cygwin installed,
you can try compiling with MingW32, by passing "-c mingw32" to setup.py.',)
所以我的问题是:有人知道让 pyximport 使用 mingw 的方法吗?
请注意,mingw 似乎已正确安装,制作 Cython 模块(使用 setup.py)的漫长方法确实为我工作,而且我什至创建了一个distutils.cfg
wiki 告诉我的文件。