Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 830 Bytes

work-flow.md

File metadata and controls

37 lines (26 loc) · 830 Bytes

Quick use

  • 일상적인 워크플로우를 적어 본다.

envronment

creation, list, remove, clone

$ conda create --name(-n) {YOUR-ENV-CREATING} python=3.8
$ conda env list 
$ conda env remove --name {YOUR-ENV-DELETING}
$ conda create --name {YOUR-ENV-CREATING} --clone {YOUR-ENV-CLONED}
  • julia도 가능한 듯.
    • arm64에서는 가능하지 않았다...

Install

$ conda install {YOUR-PACKAGE-INSTALLING}(=x.x.x)
$ conda remove {YOUR-PACKAGE-REMOVING}

Example from scratch

$ conda crate --name python10+pandas python=3.10 # 3.10 버전 설치 
$ conda activate python10+pandas # 환경 활성화 
$ conda install matplotlib # matplotlib 설치 
$ pip install koreanize-matplitlib # matplotlib 한글화 설치 
$ conda install pandas 
$ conda deactivate