July 28, 2016
7:04 p.m.
On Thu, Jul 28, 2016 at 7:55 PM, Sebastian Raschka <mail@sebastianraschka.com> wrote:
I think that should work fine for the `pip install scikit-learn`, however, I think the problem was with upgrading, right? E.g., if you run
pip install scikit-learn --upgrade
it would try to upgrade numpy and scipy as well, which may not be desired. I think the only workaround would be to run
pip install scikit-learn --upgrade --no-deps
unless they changed the behavior recently. I mean, it’s not really a problem, but many users may not know about the --no-deps flag.
Also - the install will work fine for platforms with wheels, but is still bad for platforms without - like the Raspberry Pi. Cheers, Matthew