amsehili / auditok

An audio/acoustic activity detection and audio segmentation tool
MIT License
732 stars 94 forks source link

ImportError: No module named setuptools #3

Closed Simpler1 closed 8 years ago

Simpler1 commented 8 years ago

When I try to run the setup script, I get the following error:

~/auditok $ python setup.py install
Traceback (most recent call last):
  File "setup.py", line 4, in <module>
    from setuptools import setup
ImportError: No module named setuptools

Where should it be finding this "setuptools" directory/module?

Thanks

amsehili commented 8 years ago

You have to install setuptools beforehand:

sudo pip install setuptools

cheers