You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several packages which have had this problem: scipy/scipy#453 and pandas-dev/pandas#2732. I have not had a problem with Pandas in this respect.
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
The text was updated successfully, but these errors were encountered: