SyntaxError:Invalid Syntax on python import JWT

python, python-2.7

Solution

I was trying install jwt for Python 3 when I needed the package Pyjwt for Python 2.7

Problem

I am trying to import the package JWT into Python 2.7 and I am getting a `SyntaxError: invalid syntax`. What can I do to fix this?

Original source

Related problems