On Mon, 8 Jul 2013 14:46:25 -0700 (PDT)
"Yves S. Garret" <
yoursurr...@gmail.com> 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