機器學習sklearn庫部署環境

2021-08-21 04:29:11 字數 944 閱讀 1064

python2.7.13 : 

python2.7.13

numpy+mkl : 

numpy‑1.11.3+mkl‑cp27‑cp27m‑win_amd64.whl

scipy:

scipy‑0.19.1‑cp27‑cp27m‑win_amd64.whl

進入:c:\python27\scripts

easy_install.exe pip

pip install wheel 

pip install d:\***\numpy-1.13.3+mkl-cp27-cp27m-win32.whl

pip installd:\***\scipy-1.0.0-cp27-cp27m-win32.whl

如果報錯:

****** is not a supported wheel on this platform

執行:pip install --upgrade setuptools

pip install --upgrade pip

然後再輸入:

pip install d:\***\numpy-1.13.3+mkl-cp27-cp27m-win32.whl

pip install d:\***\scipy-1.0.0-cp27-cp27m-win32.whl

然後在python27的shell中輸入

import numpy 

import scipy

如果輸出沒有錯誤,說明安裝沒有問題。 

繼續安裝sklearn和panda,在命令列輸入指令:

pip install sklearn

pip install pandas

安裝完成後在shell中輸入指令:

import sklearn

import pandas

如果輸出沒有錯誤,至此,sklearn庫安裝完成。 

機器學習sklearn庫部署環境

python2.7.13 python2.7.13 numpy mkl numpy 1.11.3 mkl cp27 cp27m win amd64.whl scipy scipy 0.19.1 cp27 cp27m win amd64.whl 進入 c python27 scripts easy i...

sklearn 機器學習庫

pipeline parameters steps 步驟 列表 list 被連線的 名稱,變換 元組 實現擬合 變換 的列表,按照它們被連線的順序,最後乙個物件是估計器 estimator memory 記憶體引數,instance of sklearn.external.joblib.memory...

機器學習之Sklearn庫

sklearn庫是在numpy scipy和matplotlib的基礎上開發而成的,因此在介紹sklearn的安裝前,需要先安裝這些依賴庫。numpy是乙個開源的python科學計算庫。scipy庫是sklearn庫的基礎,它是基於numpy的乙個整合了多種數學演算法和函式的python模組。mat...