Top "Distutils" questions

Distutils is the standard packaging system for Python modules and applications.

how to install python distutils

I just got some space on a VPS server(running on ubuntu 8.04), and I'm trying to install django on it. …

python distutils
Including non-Python files with setup.py

How do I make setup.py include a file that isn't part of the code? (Specifically, it's a license file, …

python distutils
pypi UserWarning: Unknown distribution option: 'install_requires'

Does anybody encounter this warning when executing python setup.py install of a PyPI package? install_requires defines what the …

python distutils pypi
How to copy directory recursively in python and overwrite all?

I'm trying to copy /home/myUser/dir1/ and all its contents (and their contents, etc.) to /home/myuser/dir2/ in …

python copy distutils
Differences between distribute, distutils, setuptools and distutils2?

The Situation I’m trying to port an open-source library to Python 3. (SymPy, if anyone is wondering.) So, I need …

python packaging setuptools distutils distribute
pip cannot uninstall <package>: "It is a distutils installed project"

I tried to install the Twilio module: sudo -H pip install twilio And I got this error: Installing collected packages: …

python installation pip distutils
How to include package data with setuptools/distutils?

When using setuptools, I can not get the installer to pull in any package_data files. Everything I've read says …

python setuptools distutils
How do I point easy_install to vcvarsall.bat?

I already have MSVC++ 2010 Express installed, and my vcvarsall.bat file is at C:\Program Files\Microsoft Visual Studio 10.0\VC, …

python distutils easy-install visual-studio-2010
How can I make setuptools install a package that's not on PyPI?

I've just started working with setuptools and virtualenv. My package requires the latest python-gearman that is only available from GitHub. …

python setuptools distutils pypi
How to use MinGW's gcc compiler when installing Python package using Pip?

I configured MinGW and distutils so now I can compile extensions using this command: setup.py install MinGW's gcc compiler …

python windows mingw pip distutils