install scikit-learn

CODEDRAGON Development/Python

반응형


 

 

 

install scikit-learn

·       pip 위치로 이동

·       scikit-learn 설치

 

 

pip 위치로 이동

파이썬이 설치된 폴더 하위에 Scripts 폴더에 위치해 있습니다.

C:\Python\Python36-32\Scripts

 

cd C:\Python\Python36-32\Scripts

or

cd %PYTHONHOME%\Scripts

C:\CodeLab>cd C:\Python\Python36-32\Scripts

 

C:\Python\Python36-32\Scripts>

 

 

 

 

scikit-learn 설치

scikit-learn pip 사용하여 아래와 같이 간단히 설치할 있습니다.

pip install scikit-learn

 

C:\Python\Python36-32\Scripts>pip install scikit-learn

Collecting scikit-learn

  Downloading https://files.pythonhosted.org/packages/87/b7/0e7f5c0cf765cf4e1924c068e7

b2e1708c93ebffde9302a57ea8f26619e9/scikit_learn-0.19.1-cp36-cp36m-win32.whl (3.9MB)

    100% |████████████████████████████████| 3.9MB 3.6MB/s

Installing collected packages: scikit-learn

Successfully installed scikit-learn-0.19.1

 

C:\Python\Python36-32\Scripts>

 

 

반응형