R & Python
아나콘다 설치 후, 업데이트하기
부드러운 남자
2023. 7. 7. 10:57
반응형
# 아나콘다 다운로드
Unleash AI Innovation and Value | Anaconda
Accelerate growth efficiently for everyone with the AI and data science experts.
www.anaconda.com
# 아나콘다 프롬프트(Anaconda Prompt)에서 아나콘다를 업데이트하기
conda update -n base conda
# 아래의 명령어도 같은 의미
conda update --name base conda
# 아나콘다에 포함된 패키지를 업데이트하기
conda update --all
# (설치하자마자 할 일은 아니지만) 종종 PIP 업데이트하기
pip install --upgrade pip
반응형