| python Programming Glossary: distutilsCan I install Python windows packages into virtualenvs? http://stackoverflow.com/questions/3271590/can-i-install-python-windows-packages-into-virtualenvs  All you need is easy_install binary_installer_built_with_distutils.exe Surprised It looks like binary installers for Windows made.. It looks like binary installers for Windows made with distutils combine .exe with .zip into one .exe file. Change extension.. 
 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.. Software Foundation Inc. How could I fix it  python mingw distutils cython   share improve this question   It sounds like GCC 4.7.0.. has finally removed the deprecated mno cygwin option but distutils has not yet caught up with it. Either install a slightly older.. 
 Differences between distribute, distutils, setuptools and distutils2? http://stackoverflow.com/questions/6344076/differences-between-distribute-distutils-setuptools-and-distutils2  between distribute distutils setuptools and distutils2  The Situation I ™m trying to port.. between distribute distutils setuptools and distutils2  The Situation I ™m trying to port an open source library to.. port the current system which according to the doctest is distutils . The Problem Unfortunately I ™m not sure what ™s the difference.. 
 What is setup.py? http://stackoverflow.com/questions/1471994/what-is-setup-py  about to install have been packaged and distributed with Distutils which is the standard for distributing Python Modules. This.. 
 OSX: error when installing python packages http://stackoverflow.com/questions/14720702/osx-error-when-installing-python-packages  though. In the case of PIL changing a couple of Python Distutils defaults through environment variables should do the trick #.. 
 compile python .py file without executing http://stackoverflow.com/questions/2042426/compile-python-py-file-without-executing  files during installation. I don't need the overhead of Distutils.  python   share improve this question   The py_compile module.. 
 Getting Python under control on Mac OS X - setting up environment and libraries http://stackoverflow.com/questions/3487664/getting-python-under-control-on-mac-os-x-setting-up-environment-and-libraries  . And because all of them under the covers use Python's Distutils to do the dirty work all of these methods will generally end.. 
 Reinstalling python on Mac OS 10.6 with a different gcc version http://stackoverflow.com/questions/3500638/reinstalling-python-on-mac-os-10-6-with-a-different-gcc-version    share improve this question   On current OS X Pythons Distutils tries to ensure that C extension modules are built using the.. 
 MANIFEST.in ignored on “python setup.py install” - no data files installed? http://stackoverflow.com/questions/3596979/manifest-in-ignored-on-python-setup-py-install-no-data-files-installed  in addition to Ned's answer which hits on the core problem Distutils does not install Python packages and modules inside a per project.. 
 “Unable to find vcvarsall.bat” error when trying to install qrcode-0.2.1 http://stackoverflow.com/questions/3879014/unable-to-find-vcvarsall-bat-error-when-trying-to-install-qrcode-0-2-1  manu  python setup qr code   share improve this question   Distutils does not play well with MS Compiler tool chain. This file is.. 
 Trouble Setting Up MySQLdb Module http://stackoverflow.com/questions/5671480/trouble-setting-up-mysqldb-module  is used to override the arch settings used by Python's Distutils when building extension modules. Try doing something like this.. 
 Can we shed some definitive light on how python packaging and import works? http://stackoverflow.com/questions/5714916/can-we-shed-some-definitive-light-on-how-python-packaging-and-import-works  and install distributions setuptools Distribute distutils Distutils is the standard infrastructure on which Python packages are.. just know from distutils.core import setup setup name 'Distutils' version '1.0' description 'Python Distribution Utilities' author.. 
 Python build using wrong version of GCC on OS X http://stackoverflow.com/questions/5944228/python-build-using-wrong-version-of-gcc-on-os-x  package that includes a C extension module the Python Distutils included with that Python instance will attempt to use the same.. 
 Differences between distribute, distutils, setuptools and distutils2? http://stackoverflow.com/questions/6344076/differences-between-distribute-distutils-setuptools-and-distutils2  yet so here are excerpts that should help define things. Distutils is the standard tool used for packaging. It works rather well.. is merged back into setuptools and discontinued. Distutils2 is a new distutils library started as a fork of the distutils.. inspired by pip. The actual name you use to import Distutils2 is packaging in the Python 3.3 standard library or distutils2.. 
 Failed to build PIL on Mac OS X 10.7 Lion http://stackoverflow.com/questions/7473896/failed-to-build-pil-on-mac-os-x-10-7-lion  OS X versions. When building a C extension module Python's Distutils will attempt to use the same compiler version and options that.. 
 How do distribute and pip relate to one another? http://stackoverflow.com/questions/8550062/how-do-distribute-and-pip-relate-to-one-another  of holes in the even older Python standard library package Distutils . Setuptools added functions like automatic downloads of packages.. there is a project underway to provide a replacement for Distutils and possibly for some of the higher level add ons. It is planned.. package and as an add on for older versions of Python as Distutils2 . To summarize the current relationship is pip Distribute setuptools.. 
 |