| python Programming Glossary: distutils.cfgCannot install Cython on win7 http://stackoverflow.com/questions/16974789/cannot-install-cython-on-win7  to use gcc... Create file C Python27 Lib distutils distutils.cfg and write this inside build compiler mingw32 If needed remove.. 
 Custom distutils commands http://stackoverflow.com/questions/1710839/custom-distutils-commands  file add global command packages foo.bar this can be in distutils.cfg in the distutils package itself ..pydistutils.cfg in your home.. be in distutils.cfg in the distutils package itself ..pydistutils.cfg in your home directory no leading dot on Windows or setup.cfg.. 
 Installing pymc then matplotlib Win7-64 continues to fail despite workarounds http://stackoverflow.com/questions/19878430/installing-pymc-then-matplotlib-win7-64-continues-to-fail-despite-workarounds  c MinGW32 xy bin to my PATH. Next I added the following to distutils.cfg in C Python27 Lib distutils Note I attempted the same with msys.. Visual Studio Express 2012 desktop version. I removed the distutils.cfg file and path settings detailed above. I restarted the command.. 
 How to use MinGW's gcc compiler when installing Python package using Pip? http://stackoverflow.com/questions/3297254/how-to-use-mingws-gcc-compiler-when-installing-python-package-using-pip  will be installed. For that I installed MinGW and created distutils.cfg file with following content build compiler mingw32 It's cool.. bin to your PATH in PYTHONPATH Lib distutils create a file distutils.cfg and add these lines build compiler mingw32  share improve this.. 
 Combine --user with --prefix error with setup.py install http://stackoverflow.com/questions/4495120/combine-user-with-prefix-error-with-setup-py-install  file in my case usr lib64 python2.6 distutils distutils.cfg where there was this install prefix usr local Basically this.. this behavior I created a personal config file as ~ .pydistutils.cfg and put this in it install prefix Note that there is no text.. 
 python pip package install fails , dllwrap error after 'fixing': “unable to find vcvarsall.bat” http://stackoverflow.com/questions/5439160/python-pip-package-install-fails-dllwrap-error-after-fixing-unable-to-find  I create file G Programs x86 Python 2.6 Lib distutils distutils.cfg which contains build compiler mingw32 Now the error I get is.. 
 Compiling with cython and mingw produces gcc: error: unrecognized command line option '-mno-cygwin' http://stackoverflow.com/questions/6034390/compiling-with-cython-and-mingw-produces-gcc-error-unrecognized-command-line-o  with Python 2.6 Active Python 2.6.6 and with the adequate distutils.cfg file setting mingw as the compiler When executing C Python26.. 
 How do I point easy_install to vcvarsall.bat? http://stackoverflow.com/questions/6551724/how-do-i-point-easy-install-to-vcvarsall-bat  find vcvarsall.bat. Is there something I need to set in my distutils.cfg file to point it to my MSVC installation G easy_install hg git.. 
 Cython won't compile on Windows 7 x64 http://stackoverflow.com/questions/6982009/cython-wont-compile-on-windows-7-x64  installed the automated MinGW installer . The created a distutils.cfg to the distutils folder with the following content build compiler.. 
 'easy_install -U cython' fails complaining about vcvarsall.bat and -mno-cygwin http://stackoverflow.com/questions/8531983/easy-install-u-cython-fails-complaining-about-vcvarsall-bat-and-mno-cygwin  I also tried putting this in C Python27 Lib distutils distutils.cfg to fix the vcvarsall.bat error. build compiler mingw32 This.. 
 |