On 2013-08-01, Larry Martell larry.martell@gmail.com wrote:
Anyone here using django on centos.
Django is not a CentOS package. It is very likely that you installed it from a third-party repository or by hand. In the future you should try to post to a more appropriate location (like the django mailing list where you already posted this question).
On a Centos system running python 2.6 I did:
rm -rf /usr/lib/python2.6/site-packages/django followed by the setup.py install.
This was probably the wrong thing to do. Use yum to upgrade if you installed from a repo, or use the official Django upgrade docs if you installed by hand:
https://docs.djangoproject.com/en/1.5/howto/upgrade-version/
--keith