I've got a pip requirements file that I'm using with virtualenv to automatically grab dependencies for my app.
The app depends on both NumPy and SciPy and as such my pip requirements file includes:
numpy==1.5.0
scipy==0.8.0
However, when running this pip in a new virtualenv, the installation fails with the following error:
File "/Users/x/virtualenv/deploy/src/scipy/setup.py", line 58, in svn_version
from numpy.compat import asstr
ImportError: No module named numpy.compat
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
This happens because SciPy requires NumPy to be installed before it will build. Therefore, if I remove SciPy and then manually add SciPy afterwards (pip install scipy), it works.
How can I resolve this problem given that pip does not install in any particular order?