I have two versions of Python installed: 2.7 and 3.4. I installed Django 1.8 as recommended in the Django tutorial. However, it got installed in Python 2.7 instead of Python 3.4 so when I type import django
in Python 3.4 I get the error message
ImportError: No module named 'django'
If I type import django
in Python 2.7 I get no errors.
Can anybody explain how I get Django 1.8 to be in the Python 3.4 path?