I'm trying to download the Turtle Graphics Package for Python, so I enter the following command into my linux terminal:
myusername@penguin:~/Pys$ pip3 install turtle
And here's the error I encountered:
Collecting turtle
Using cached https://files.pythonhosted.org/packages/ff/f0/21a42e9e424d24bdd0e509d5ed3c7dfb8f47d962d9c044dba903b0b4a26f/turtle-0.0.2.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-c6dr99ga/turtle/setup.py", line 40
except ValueError, ve:
^
SyntaxError: invalid syntax
It seems like there's an syntax error in the file I was trying to download. Is there a way I can fix that?