[Download] 아나콘다 설치

이주희·2023년 1월 17일
0

download & setting

목록 보기
1/6

기본 브라우저를 크롬으로 설정

아나콘다 설치하기

설치 중 "Add anaconda3 to my PATH ~" 체크
→ 나중에 어느 위치에서든 파이썬을 실행할 수 있는 설정

버전확인
conda --version

최신 업데이트
conda update conda

환경 생성 및 버전 적용
conda create -n ds_study python=3.8

ds_study환경으로 들어가기
conda activate ds_study

다시 base로 나오기
conda deactivate

어떤 환경이 있는지 목록 확인
conda env list

환경 지우기
conda evn remove -n ds_study

주피터 설치 (반드시 ds_study환경으로 들어가서 설치)
conda install jupyter

패키지 설치 (반드시 ds_study환경으로 들어가서 설치)
conda install ipython
conda install matplotlib
conda install seaborn
conda install pandas
conda install scikit-learn
conda install xlrd

주피터 노트북 켜기
jupyter notebook

profile
데이터 입문자

0개의 댓글