audiolab
audiolab copied to clipboard
pip install numpy
Hi!
I have created a virtualenv and then inside of it I run
pip install -r requirements.txt
requirements.txt contains 2 items/lines: numpy scikits.audiolab
Installing scikits.audiolab fails with
ImportError: No module named numpy.distutils.core
Partial solution is to run pip in two stages:
pip install --no-install -r requirements.txt
pip install --no-download -r requirements.txt
but still the scikits.audiolab must be on the last line because it will stop the "--no-install" stage.
David
There are several packages which have had this problem: https://github.com/scipy/scipy/pull/453 and https://github.com/pydata/pandas/issues/2732. I have not had a problem with Pandas in this respect.