jakc
jakc

Reputation: 1171

Cannot import name find_packages?

This is likely a rookie error, but im in the early stages of learning python.

enter image description here

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

Answers (2)

Aymen Alsaadi
Aymen Alsaadi

Reputation: 1517

I did the following and it worked for me:

pip uninstall setuptools

and then reinstall it:

pip install setuptools

Upvotes: 3

Unknown
Unknown

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

Related Questions