大家好,我正试图在我的Windows7系统上安装rrdtool(适用于PYTHON 2.7),我用这个命令行安装它。
python setup.py install build --compiler=mingw32
它给我以下输出:
running install
running build
running build_ext
running build_configure
building 'rrdtoolmodule' extension
C:MinGWbingcc.exe -mno-cygwin -mdll -O -Wall -Irrdtool-1.4.7/src -IC:Python2
7include -IC:Python27PC -c rrdtool-1.4.7/bindings/python/rrdtoolmodule.c -o b
uildtemp.win32-2.7Releaserrdtool-1.4.7bindingspythonrrdtoolmodule.o
cc1.exe: error: unrecognized command line option '-mno-cygwin'
error: command 'gcc' failed with exit status 1
我尝试了很多解决方案来解决这个问题,但都没有成功。我使用的是mingw版本4.6.2
有人能帮帮我吗。
请参阅以下答案:https://stackoverflow.com/a/6035864/1516291
您需要在Python目录中编辑distutils\cygwinccompiler.py,以删除-mno cygwin 的所有实例
祝好运