Building minimal cython file with python 3.3 (Anaconda) under windows 7 Building minimal cython file with python 3.3 (Anaconda) under windows 7 python-3.x python-3.x

Building minimal cython file with python 3.3 (Anaconda) under windows 7


The line 404 of the file cygwinccompiler.py of the package disutils

out_string = check_output(['gcc', '-dumpmachine'])

has to be changed as

out_string = check_output(['gcc', '-dumpmachine'], shell=True)

Then, it compiles normally.