trying to install eyed3 under python 2.7.5
I have done a google search and have been following what I found to install eyed3. The instructions were as follows
- extract the zip file to a temp folder (filename eyeD3-0.7.3.zip) I did using a temp folder on my desktop.
- In the eyeD3 folder (under src) rename the init.py.in to setup.py. I did not find _init++.py.in in the eyed3 folder, but init_.py was,so I assumed this latest version used that file.
In the main folder (I assume eyeD3-0.7.3) run python setup.py.in install. setup.py.in didnot exist, but I ran it anyway and got the expected file not found message, however, setup.py did exist so I executed python setup.py install and got the following Traceback
Traceback (most recent call last): File "C:\Users\Me\Desktop\New folder\eyeD3-0.7.3\setup.py", line 10, in <module> paver.tasks.main() File "paver-minilib.zip\paver\tasks.py", line 883, in main File "paver-minilib.zip\paver\tasks.py", line 851, in _launch_pavement File "pavement.py", line 28, in <module> import setuptools ImportError: No module named setuptools
a cmd line search of the python 2.7.5 dir and sub-directories did not find setuptools.py, however I did find the following two files
setuptools_build_ext.py and setuptools_extension.py.
Do I need to rename one of these files or do you know what I am doing wrong or what the fix would be?
Thank you