Django is a Python module like any other. You won't be able to install it on shared hosting because you won't have permissions to the package directory. You can easily get around this by using virtualenv.
Here are the basics you'll need: download virtualenv extract the tarball do not try to install it -- run "python virtualenv.py somepath," where somepath is a directory where you want to install your own private Python environment. Run: source somepath/bin/activate You're now in your own Python environment and can install Django and anything else you need. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

