On 1/24/06, Muness Alrubaie <[EMAIL PROTECTED]> wrote: > Is there a way to install the libs locally without needing root perms? > I need to do this for a hosted server I am using with Textdrive.
Just use "python setup.py install --prefix=<wherever>". Then everything will be installed under a different directory. Of course, you'll need to tell your web server where to find the python libs (by setting the PYTHONPATH env var for CGI access, etc.). You'll also need to specify the path when you run trac-admin. --Bruce _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
