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
Scikit-learn does not specify any of its dependencies in the setup.py file, despite requiring (and explicitly stating in documentation) both the NumPy and SciPy packages.
Note (this may be a bit buried in the thread): for scikit-learn 0.18.1, you can use pip install 'scikit-learn[alldeps]' if you want to install numpy, scipy and scikit-learn in the same command.
Scikit-learn does not specify any of its dependencies in the
setup.py
file, despite requiring (and explicitly stating in documentation) both the NumPy and SciPy packages.These requirements should be included in the
setup.py
file using theinstall_requires
convention documented here to make installation easier:http://python-packaging.readthedocs.io/en/latest/dependencies.html
The text was updated successfully, but these errors were encountered: