Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any body encounter this warning when execute "Python setup.py" of a pypi package?

'install_requires' defines what this package requires. A lot of pypi packages have this option. How can it be an "Unknown distribution option"?

share|improve this question

3 Answers

python setup.py uses distutils which doesn't support install_requires. setuptools does, but also distribute (its successor) and pip (which basically uses either setuptool/distribute) do. But you actually have to use them. I.e. call setuptools through the easy_install command or pip install. Another way is to import setup from setuptools in your setup.py, but this not standard and makes everybody wanting to use your package to have setuptools installed.

share|improve this answer
Say I want to use pip, then how do I run the setup.py file if I only want to build an extension in-place? – larsmans May 24 '12 at 11:41
1  
The warning doesn't prevent you from packaging your code, so you can run python setup.py sdist and install it with pip install resulting_package.tar.gz. You can also use pip install -e to install directly from source, but I always preferred to install from package or from repository directly.. – Sebastian Blask May 24 '12 at 12:05
This is a little messed up. You can always try to import setup from setuptools first, otherwise go with distutils and get the warning. If it's in pypy, however, you might end up with "Too many open files" due to setuptools not closing descriptors properly (even on Debian, with the default ulimit -n of 1024): bugs.pypy.org/issue878 – fiorix Jun 13 '12 at 8:08

I have just ran into this problem when trying to build/install ansible. The problem seems to be that distutils really doesn't support install_requires. Setuptools should monkey-patch distutils on-the-fly, but it doesn't, probably because the last release of setuptools is 0.6c11 from 2009, whereas distutils is a core Python project.

So even after manually installing the setuptools-0.6c11-py2.7.egg running setup.py only picks up distutils dist.py, and not the one from site-packages/setuptools/.

Also the setuptools documentation hints to using ez_setup and not distutils, so it could be that most PyPI packages are simply wrong.

share|improve this answer

This is a warning from distutils, and is a sign that you do not have setuptools installed. Installing it from http://pypi.python.org/pypi/setuptools will remove the warning.

share|improve this answer
5  
setuptools is installed. still has the warning. – Tyler Long Nov 29 '11 at 1:58
You are quite right, I get this error in Python 2.6.6 even if setuptools or distribute is installed. If I try with 2.7.2 it's gone though. – Fredrik Håård Nov 29 '11 at 9:32
I am having this problem in python 2.7.3 – Calvin Cheng May 9 '12 at 4:13
1  
Is setuptools installed in the right place? – NT3RP May 18 '12 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.