easy_install or pip as a limited user?
Standard python distutils provides a '--user' option which lets me install a package as a limited user, like this: python setup.py install --user Is there an equivalent for easy_install and pip ? For pip , see User Installs for details, but basically, it's just what you'd expect: pip install --user Foo It's a bit trickier for easy_install . As Ned Deily points out, if you can rely on distribute rather than setuptools , and 0.6.11 or later, you can just use --user the same as pip . But if you need to work with setuptools , or older distribute … see Custom Installation Locations for details (and