PYTHON
파이썬 머신러닝 완벽 가이드 - 1장
코린이s
2020. 10. 31. 19:35
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