Search code examples
pythonwindows-server-2008-r2python-2.6easy-install

easy_install requires admin rights on Windows


Python is installed in a directory all users have full access to, but when I run easy_install, a consent window appears asking for administrator credentials. Why?


Solution

  • I think I have found a solution:

    easy_install.cmd

    @echo off
    C:\Python26\python.exe C:\Python26\Scripts\easy_install-script.py %*
    

    This script does not require admin rights.