medpy icon indicating copy to clipboard operation
medpy copied to clipboard

install_requires required order depends on setuptools-version

Open loli opened this issue 8 years ago • 3 comments

In the current ordering, with setuptools 15.00, the installation of scipy fails.

It seems that the package are installed in the order medpy scipy numpy

But scipy requires numpy and throws an error during install. Hence we are left with medpy and numpy install, but no scipy.

This might be related to https://github.com/pypa/pip/issues/2478

This should be fixed soon!

loli avatar Sep 06 '17 12:09 loli

numpy is actually compiled first... but not installed before scipy is compiled. Changing the order or leaving just scipy (which depends on numpy) named therefore does not resolve the problem. It seems, like there is no real solution.

Fazit: Installing with python setup.py requires either numpy or scipy to be already installed.

loli avatar Sep 06 '17 22:09 loli

Reflect this requirement in the installation instructions of the documentation if no solution can be found.

loli avatar Feb 25 '18 18:02 loli

Is this still the case?

loli avatar Feb 10 '19 15:02 loli

Hasn't been an issue lately. Re-open when it comes up again.

loli avatar Dec 15 '23 17:12 loli