Language/Python

[Anaconda] 아나콘다 설치 및 세팅

쩡 (개발꿈나무) 2021. 7. 14. 21:27

Anaconda Install & Settings

- 환경 : Windows 10 Pro

 

1. 설치

https://www.anaconda.com/products/individual

 

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. Anaconda Prompt 실행 (버전확인)

conda --version

 

3. 업데이트

conda update conda

 

4. python 버전 고정 (3.7)

tmp로 생성

conda create -n tmp python=3.7

 

5. 프롬프트 세팅

4에서 만든 경로(?)로 하면 되는데, os에 따라 명령어가 다르니 유의

conda activate tmp

 

6. 추가 모듈 설치

* pip 버전 확인 (conda 명령어로 설치 가능) : 업데이트 한 상태라면 pip도 그 시점 최신 버전

모듈 설치 (한번에 붙여넣기 하면 자동으로 쭉쭉 설치됩니다)

pip install jupyter
pip install matplotlib
pip install pandas
pip install sklearn
pip install xlrd
pip install seaborn

 

일단 여기까지 ~