버전 확인
conda --version
아나콘다 업데이트
conda update conda
라이브러리 리스트 확인
conda list
라이브러리 설치
# 기본 명령어
conda install {패키지명}
# 권장 명령어. 기본 채널에 피키지가 존재하지 않는 경우 PackagesNotFoundError가 발생할 수 있다.
conda install -c conda-forge {패키지명}
라이브러리 업데이트
# 특정 라이브러리 업데이트
conda update {패키지명}
# 설치되어 있는 모든 라이브러리 업데이트
conda update -all
라이브러리 삭제
conda remove {패키지명}
라이브러리 검색
conda search {패키지명}
아나콘다 환경설정 확인
conda env list
conda info --envs
conda info -e
'Programming > Python' 카테고리의 다른 글
[Python] 'DataFrame' object has no attribute 'ix' (0) | 2020.09.29 |
---|---|
[Python] missingno ModuleNotFoundError (0) | 2020.04.21 |
[python] 연산자, 연산자 우선순위, math 내장 함수 (0) | 2020.04.17 |