본문 바로가기

프로그래밍 언어/파이썬 수학

파이썬 아나콘다(Anaconda) 설치하기

개요

아나콘다를 도입하면, Python으로 머신러닝을 조금 쉽게 시작할 수 있습니다. 

아나콘다는 많은 수식계산, 머신러닝용 외부 패키지를 내장하고 있는 파이썬 배포판으로 간편하게 파이썬 코딩을 할 수 있는 환경을 만들 수 있습니다. 

 

Anaconda 다운로드

아나콘다 설치 가능 플랫폼

  • Windows
  • macOS
  • Linux

아나콘다 사이트

https://www.anaconda.com

 

The World's Most Popular Data Science Platform | Anaconda

Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.

www.anaconda.com

다운로드 링크

https://www.anaconda.com/products/individual#download-section

 

Individual Edition | Anaconda

🐍 Open Source Anaconda Individual Edition is the world’s most popular Python distribution platform with over 20 million users worldwide. You can trust in our long-term commitment to supporting the Anaconda open-source ecosystem, the platform of choice

www.anaconda.com

가능하면 Python 3.X 버전으로 설치하는 것을 권장합니다. 

 

Anaconda 설치

Windows, macOS 설치 방법

Windows나 macOS의 경우 인스톨러 파일을 다운로드하여 설치를 진행하시면 됩니다.

리눅스 설치 방법

리눅스의 경우에는 터미널에서 명령어로 설치를 할 필요가 있습니다.

# 설치 스크립트 실행
$ bash ./Anaconda3-XXX-Linux-x86_64.sh

# PATH 등록
$ export PATH=home/{유저명}/anaconda3/bin:$PATH

 Ananconda Navigator 실행

리눅스의 경우만 터미널에서 아래 명령어로 실행해야하며, 

windows와 macOS는 실행파일을 클릭하면 실행이 됩니다.