pip install fails if numpy is not already installed
dmeliza opened this issue · 1 comments
dmeliza commented
This error occurs with a common use case for repeatable scientific computing. The user creates a fresh virtualenv and then runs pip install -r requirements.txt
to install specific versions of packages. The fundamental issue is that setup.py
tries to import numpy before the install_requires
argument can do its job.
mariomulansky commented
Great fix, thanks a lot!