Reputation: 1171
This is likely a rookie error, but im in the early stages of learning python.
Not too sure what I have done wrong, or how to rectify this problem.
Here is a short screencast if it sheds anymore light.
EDIT - in response to comment.
c:\tweetstream-1.1.1>python setup.cfg install
File "setup.cfg", line 2
tag_build =
^
SyntaxError: invalid syntax
Upvotes: 1
Views: 12393
Reputation: 1517
I did the following and it worked for me:
pip uninstall setuptools
and then reinstall it:
pip install setuptools
Upvotes: 3
Reputation: 5772
Maybe this can help you. Otherwise, you can install setuptools
in your python, I don't think you have it installed. setuptools
Upvotes: 7