Notice
Recent Posts
Recent Comments
Link
코알못
파이썬 머신러닝 완벽 가이드 - 1장 본문
728x90
1장 - 파이썬 기반의 머신러닝과 생태계 이해
# 실습 환경 구축
1) conda 실습 환경 구축 (study 라는 환경 생성)
$ conda create -n study python=3.7
2) 실습 환경으로 설정
$ conda activate study
3) 라이브러리 설치
$ pip install numpy
$ pip install pandas
$ pip install matplotlib
$ pip install scikit-learn
$ pip install jupyter
4) 주피터 실행
$ jupyter notebook
# 넘파이 (numpy)
# 판다스(pandas)
728x90
'PYTHON' 카테고리의 다른 글
[selenium] 손쉽게 브라우저 자동 캡쳐 기능 만들기 (0) | 2021.05.02 |
---|---|
파이썬 머신러닝 완벽 가이드 - 3장 (0) | 2020.11.08 |
파이썬 머신러닝 완벽 가이드 - 2장 (0) | 2020.10.31 |
Word2vec - 코사인유사도 (0) | 2020.10.23 |
Word2vec (0) | 2020.10.18 |
Comments