I'm trying to install Django via pip, with
pip install Django==1.5.5
but I get the error:
File "django\utils\version.py", line 1
from __future__ import unicode_literals
SyntaxError: future feature unicode_literals is not defined
My guess is this is because pip is using the Python 2.5 version of pip. I have installed pip into Python 2.7, and have a directory structure that looks like this:
C:\Python27\Lib\site-packages\pip
Question: I know I can install Django from the .tar, but I would like pip to work so that other Python 2.7 projects can use the (much simpler) pip. What do I need to change in order for this to work?