I am trying to install Cython on a computer running Windows 7. I am using MinGW for my C-compiler. I've taken the following steps:
Installed MinGW.
Added C:\MinGW\bin to Path. Made sure Path included no empty spaces.
Created the file distutils.cfg in the distutils directory. It reads:
[build] compiler=mingw [build_ext] compiler=mingw
I start the command prompt, got to the proper directory and type "python setup.py install". I get the following output:
running install running build running build_py running build_ext building 'Cython.Plex.Scanners' extension error: Unable to find vcvarsall.bat
As far as I've understood, this is an error regarding setting MinGW as the C-compiler, but I've aldready included it into Path. What more can I do? Where do I go from here?