1

I'm trying to get csvdedupe set up and I'm running into this error when I run the command

 `python setup.py install`

However, when I run

 pip install setuptools

I get the message

Requirement already satisfied (use --upgrade to upgrade): setuptools in /usr/local/lib/python2.7/site-packages

I'm extremely new to this so any advice would be helpful!

sabbahillel
  • 3,969
  • 1
  • 17
  • 34
Eric Norcross
  • 3,940
  • 4
  • 24
  • 48

2 Answers2

0

Setuptools in written in one word : setuptools not setup tools You should run :

pip install setuptools
espern
  • 639
  • 6
  • 14
0

The message seems to be saying that someone had already installed setuptools on your system. It is telling you that you need to upgrade the already intalled version using the --upgrade argument. See the documentation for what is required.

If it is a matter of using setuptools then it is telling you that you do not need to install setuptool because it has already been done and to go to the next step.

sabbahillel
  • 3,969
  • 1
  • 17
  • 34
  • When I run `pip install setuptools --upgrade` I get `Requirement already up-to-date: setuptools in /usr/local/lib/python2.7/site-packages` and it still fails to install with the same `ImportError: No module named setuptools` error. – Eric Norcross Feb 27 '14 at 20:18
  • @greetification That means that it is already in your system. Go to the next step and use it. you should not need to install it. – sabbahillel Feb 28 '14 at 01:35