If I run pip install Django
I get
Requirement already satisfied: Django in /usr/local/lib/python2.7/dist-packages
I\'
You can install it globally as others suggested, but the recommended way to install it is to use virtualenv or venv. In case you are using virtualenv (with virtualenvwrapper), just do
mkvirtualenv --python="path to python3 executable" "environment name"
pip install django
Inside virtual environment pip
would be pip3
by default and so is python
.