상세 컨텐츠

본문 제목

아나콘다(anaconda) 업데이트

파이썬

by 문정동 다인부동산 변실장 2020. 5. 16. 12:15

본문

#패키지 설치
conda install 패키지이름
 
#conda 기본 서버에 존재하지 않는 패키지
pip install 패키지이름
 
======================================
 
#콘다 업데이트
conda update -n root conda
 
#패키지 업데이트
conda update --all
#또는
conda update conda
conda update anaconda
conda update python
 
======================================
 
#패키지 삭제
conda remove 패키지이름
 
======================================
 
#패키지 리스트 확인
conda list
 
======================================
 
#아나콘다 클린
conda clean --all
#또는
conda clean -a
처음 설치한 경우 아래 두가지 실행

conda update -n root conda : conda 자체를 최신 버전으로 업데이트하는 명령.

conda update --all : 본격적으로 업데이트를 하는 명령인데, 경우에 따라 두 번 실행해야 다 업데이트가 되는 경우가 있었습니다.

 

출처 : https://machine-geon.tistory.com/44?category=839167

관련글 더보기

댓글 영역