I'm new to Django and Python. Running through the Django Polls app and have errors right away:
(rrdj) Jeffreys-MBP:rrdj usr$ python manage.py startapp rr
Traceback (most recent call last):
File "manage.py", line 8, in <module>
from django.core.management import execute_from_command_line
File "/Users/usr/.pyenv/versions/rrdj/lib/python3.5/site-packages/django/core/management/__init__.py", line 54
except ImportError,e:
^
SyntaxError: invalid syntax
I went through most of this tutorial previously and it worked, but on native python 2.7.10, not python 3.5. I finally got pyenv installed, created a virtual environment that works, and installed a new project. Verified that it is Python 3.5. I've tried activating and deactivating pyenv - when I run that, it makes no difference. Django is installed, the versions all seem to match...
I know this is an environment issue, I'm just not sure how to find it.