본문 바로가기
2.빅데이터 & Coding 입문

1-1 아나콘다(Anaconda3) 로 파이썬(Python3) 처음 실행하기

by 데이타베이스 2021. 1. 26.
728x90
반응형

1.아래 사이트 ⓐ or ⓑ접속 후 맨 밑으로 스크롤을 내리면 다운로드를 할 수 있습니다.

 

컨티넘 애널리틱스 파이썬 배포판

www.anaconda.com/products/individual#windows

ⓑhttps://www.anaconda.com/download/#macos

 

Anaconda | Individual Edition

Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine.

www.anaconda.com

2. 보통 윈도우 최근 버전 사용하시는 분들은 64-Bit Graphical Installer (457 MB)을 받으시면 됩니다.

아나콘다3 2021-01-26 지금 기준 최신 버전

3. Anaconda Prompt 로 접속 한 뒤 아래 명령어를 쳐서 pandas를 인스톨 하여 준다.

# Python version check
>>> python3 -V
Python 3.7.3

# Pip version check
>>> pip3 -V
pip 19.0.3 from /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Pyth

on3.framework/Versions/3.7/lib/python3.7/site-packages/pip (python 3.7)


# Python3+
>>> pip3 install pandas

 

다시 했을 때 아래와 같이 나오면 설치가 되어 있는 것이다.

반응형