New update:
Install the latest version of setuptools . If you still get the error, install wheel .
pip install -U setuptools pip install -U wheel
Original answer / More:
--single-version-externally-managed is an option used for Python packages that instructs setuptools to create a Python package that can be easily managed by the host package manager if necessary, such as Yum or Apt.
If you see this message, you may have an older version of setuptools or Python. Try using Distribute, which is a newer version of setuptools and is backward compatible. These packages can expect what you already have.
https://pypi.python.org/pypi/distribute
Edit: At the moment, the distribution has been integrated into the main setuptools project. Just install the latest version of setuptools . As pointed out by @wynemo, you can use the --egg option, as this is more suitable for those who do a manual installation where you are not going to create a system package for distribution.
Kelketek Mar 06 '13 at 21:41 2013-03-06 21:41
source share