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 に答える