I am a newb to python. I am running a script I got on the web :
python file.py
I get this :
File "file.py", line 293
print json.dumps(evaluate(), indent=4)
^
SyntaxError: invalid syntax
I read it is related to python version, that should be some 2.7. So I downloaded pyenv. And I set the right version in the directory that contains file.py : pyenv local 2.7.10. But I still get the same error.
(For information, I am trying to install blockchain tool : ethereum)