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> |
'Development > Python' 카테고리의 다른 글
전치 연산(Transpose Computation) (0) | 2018.06.20 |
---|---|
Page Rank - Spidering (페이지 랭크 - 스파이더링) (0) | 2018.06.18 |
numpy 배열을 생성하는 방법 - 파이썬 리스트를 사용하는 방법, numpy에서 제공하는 함수를 사용하는 방법 (0) | 2018.06.16 |
socket.socket() (0) | 2018.06.15 |
The Python Tutorial - 파이썬 공식 설명서 (0) | 2018.06.12 |