audiolab icon indicating copy to clipboard operation
audiolab copied to clipboard

pip install numpy

Open dsiroky opened this issue 11 years ago • 1 comments

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

dsiroky avatar Jul 17 '13 07:07 dsiroky

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.

fnielsen avatar Dec 15 '14 13:12 fnielsen