Language/Python

Miniconda를 사용한 파이썬 설치

UL :) 2020. 3. 24. 18:05

 

데이터 과학 용도로 관련 패키지들을 일괄 설치하기 위해 Anaconda 라는 데이터 분석 플랫폼을 사용할 것인데,

Anaconda는 용량이 너무 크므로 Anaconda가 최소화된 패키지로 구성된 Miniconda를 다운로드 한다.

 

※ 파이썬이 이전에 설치되었을 경우 프로그램을 삭제하고, 관련된 환경변수 설정도 삭제해준다.

 

 

https://docs.conda.io/en/latest/miniconda.html

 

Miniconda — Conda documentation

Miniconda Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda, Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few others. Use th

docs.conda.io

 

 

Miniconda3 Windows 64-bit 파일을 다운받는다.

 

주요패키지들을 설치하기 위해 Anaconda prompt에서 다음 명령을 실행한다

 

conda install Jupyter
conda install numpy pandas scikit-learn matplotlib
conda install tensorflow

 

Jupyter Notebook : 웹 브라우저에서 파이썬 코드를 실행하고 결과를 확인할 수 있는 오픈소스 에디터

 

Anaconda 폴더의 Jupyter Notebook을 실행한다