Hi all -
Received these messages when installing Django 1.9.1 with python 3.4 on Centos 7. Wondering if they are of concern, since pip stated "Succesfully installed Django" (see below, also apparently succesful import of django in python follows below): Thanks
[root@localhost ~]# pip3.4 install Django==1.9.1
Downloading/unpacking Django==1.9.1
Downloading Django-1.9.1-py2.py3-none-any.whl (6.6MB): 6.6MB downloaded
Installing collected packages: Django
*** Error compiling '/tmp/pip_build_root/Django/django/conf/app_template/apps.py'...
File "/tmp/pip_build_root/Django/django/conf/app_template/apps.py", line 1
{{ unicode_literals }}from django.apps import AppConfig
^
SyntaxError: invalid syntax
*** Error compiling '/tmp/pip_build_root/Django/django/conf/app_template/models.py'...
File "/tmp/pip_build_root/Django/django/conf/app_template/models.py", line 1
{{ unicode_literals }}from django.db import models
^
SyntaxError: invalid syntax
Successfully installed Django
Cleaning up...
[root@localhost ~]# exit
logout
[ngeo@localhost src]$ python3
Python 3.4.2 (default, Dec 20 2014, 13:53:33)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> print(django.get_version())
1.9.1
>>>