On Mon, 8 Jul 2013 14:46:25 -0700 (PDT) "Yves S. Garret" <[email protected]> wrote:
> On Monday, July 8, 2013 5:18:21 PM UTC-4, Drew Ferguson wrote: > > > > Yo > > > > You have 2 versions of python installed: > > > > * python 2.6 installed probably in /usr/bin and > > using /usr/lib/python2.6 > > > > * python 2.7 installed in /usr/local/bin and > > possibly /usr/lib/python2.7 > > > > You need to decide which one you want to use and deal with the tools > > and binaries installed for the version to be rejected e.g. pip is > > currently installed for 2.6 whereas the default python is 2.7. > > > > The fact that 2.7 is installed in /usr/local/bin suggests this was a > > manual build > > > > Also you should consider using virtualenv or similar > > > > > > https://docs.djangoproject.com/en/1.5/topics/install/#install-the-django-code > > > > > > Yes, 2.7 is a manual build and I'd like to use 2.7. Any way I can go > that route? > Install virtualenv for 2.7 Make sure you know which binaries you are using to install packages with: /usr/bin/pip is currently linked to python2.6 so don't use that obviously. You may need to install pip or other tools manually for v2.7 Afterwards install django in a virtualenv -- Drew -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.

