Post

자주 사용하는 Anaconda 명령어

가상환경 관리를 쉽게 하려고 아나콘다를 매일 사용하지만 명령어는 항상 까먹는 나를 위한 기록

  1. conda update
    1
    
    conda update -n <env> conda
    
  2. 모든 패키지 업데이트 (패키지 의존성 주의!)
    1
    
    conda update --all
    
  3. 새로운 가상환경 만들기
    1
    
    conda create --name <name> <option>
    

    <option> : 설치할 언어 및 패키지 특정 버전 명시 가능

  4. jupyter notebook nbextension
    1
    2
    
    conda install -c conda-forge jupyter_contrib_nbextensions
    jupyter contrib nbextension install --user
    
This post is licensed under CC BY 4.0 by the author.