> I am installing SpamBayes on my shared host and I do not have > permissions to install the libraries in /usr/lib/. Where can I > edit a script or change a variable so that it installs to ~/local/?
Run: python setup.py install --help for a complete list of what you can do. Probably just: python setup.py install --prefix=~/local would be sufficient. You could add --dry-run to check first. You don't actually have to use setup.py at all - just put the expanded archive wherever you want it. Whichever method you use, make sure that Python can find the location. The simplest way to do this is to add the location to the PYTHONPATH environment variable. =Tony.Meyer -- Please always include the list (spambayes at python.org) in your replies (reply-all), and please don't send me personal mail about SpamBayes. http://www.massey.ac.nz/~tameyer/writing/reply_all.html explains this. _______________________________________________ [email protected] http://mail.python.org/mailman/listinfo/spambayes Check the FAQ before asking: http://spambayes.sf.net/faq.html
