0

我在运行 easy_install scrapy 时遇到问题并出现以下错误:

**cc1.exe: error: unrecognized command line option '-mno -cygwin'
error: setup script exited with error: command 'gcc' failed with exit status 1**

我在 Windows 32 位上运行 python 2.7。我安装了mingw、libxslt、liblxml2。那里发生了什么事?谢谢!

4

1 回答 1

0

解决方法是从 C:\Python27\Lib\distutils\cygwinccompiler.py 中删除所有 -mno-cygwin 实例,重新运行 easy_install。

我有同样的问题,我在这里找到了答案:

http://www.techques.com/question/1-6034390/Compiling-with-cython-and-mingw-produces-gcc:-error:-unrecognized-command-line-option-'-mno-cygwin '

我安装了不支持 -mno-cygwin 选项的 GCC 版本 4.6.2。

于 2012-06-11T14:52:48.263 回答