在安装sklearn前,首先确保安装了Numpy、Scipy和matplotlib
安装Numpy:
首先到https://pypi.org/project/numpy/#files下载安装包
注意文件的版本,如“numpy-1.19.1-cp36-cp36m-win_amd64.whl”表示该文件适用于widows操作系统下64位的Python3.6
安装numpy:Win+R,输入cmd,打开命令提示符窗口,激活环境(这一步因人而异,比如我要在tensorflow环境中安装sklearn,就先输入“activate tensorflow”),之后输入安装numpy的命令:
pip install "D:\numpy-1.19.1-cp36-cp36m-win_amd64.whl"
安装scipy:
到https://pypi.org/project/scipy/#files下载对应版本的scipy,按照上述方法安装
安装matplotlib:
到https://pypi.org/project/matplotlib/#files下载对应版本的matploylib,按照上述方法安装
安装scikit-learn:
到https://pypi.org/project/scikit-learn/#files下载对应版本的scikit-learn,按照上述方法安装
注意:
一般来说上面的包都是安装最新版本的
我的python版本是3.6,64位的,上面的4个库我安装了以下版本: