You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In setup.py we use distutils to install psutil:
from distutils.core import setup
setup(...)
Users having setuptools installed might want to take advange of it.
The first example usage which comes to mind is:
$ python setup.py develop
...which lets the user edit the source checkout and do development without
having to actually install the package:
http://mail.python.org/pipermail/distutils-sig/2005-July/004692.html The
following change would let users take advange of setuptools remaining backward
compatible if setuptools is not installed:
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(...)
From g.rodola on July 06, 2011 14:16:17
Original issue: http://code.google.com/p/psutil/issues/detail?id=179
The text was updated successfully, but these errors were encountered: