[Answer]-Having trouble installing Django 1.8 in virtualenv

1👍

Use pip instead of pip-3.2

source venv/bin/activate
pip install Django==1.8

It seems pip-3.2 is pointing to system pip. You can check by which pip-3.2

Leave a comment