dr14_t.meter icon indicating copy to clipboard operation
dr14_t.meter copied to clipboard

setup.py missing install_requires entry for numpy

Open dnwe opened this issue 9 years ago • 1 comments

something like

    install_requires=[
        'numpy>=1.8'
    ],

should be added (as appropriate), else a setup.py-based install won't work

dnwe avatar Dec 01 '15 13:12 dnwe

Actually it seems mutagen is also needed, this worked for me:

    install_requires=[
        'numpy',
        'mutagen',
    ]

now I can install successfully with pip3 install .

sustefil avatar Mar 27 '24 15:03 sustefil