sklearn

Installation

  • Critical to this walkthrough is the installation of Scikit Learn.Prior to doing this,make sure to download Python3.With your terminal open,make sure that you have both Numpy and Scipy installed with pip:
pip install numpy 
pip install scipy

The rest of the installation process is satisfying simple.One command performs the magic:

pip install scikit-learn

After a short time you should receive successfully installed scikit-learn.In order to read CSV files for this walkthrough, we’ll also require Pandas. As before, one command covers our tracks:

pip install pandas

There we have it-installation complete!

原文地址:https://www.cnblogs.com/hugeng007/p/9358867.html