C.W.K.
Stream
Lesson 02 of 05 · published

Miniconda install (Anaconda 아님)

~10 min · conda, installation, miniconda

Level 0초심자
0 XP0/55 lessons0/16 achievements
0/80 XP to next level80 XP to go0% complete

conda ship 하는 두 distribution: Anaconda (~3 GB, 수백 데이터-사이언스 패키지 사전 로드) 와 Miniconda (~100 MB, conda + Python 만). 99% 사용자에게 Miniconda install. 필요할 때 패키지 추가; 거의 안 쓸 사전 install 3 GB 안 필요.

Apple Silicon 엔 arm64 installer 다운로드. 인텔 버전 install 안 함 — Rosetta 통해 작동하지만 성능 잃고 native binary mismatch.

install 후 terminal 재시작 (또는 source ~/.zshrc). installer 가 shell init 에 conda init 블록 추가 — conda activate 가능하게 함. conda --version 으로 검증.

install 직후 conda-forge 를 디폴트 channel 로 설정. 'defaults' channel (Anaconda Inc 공식) 이 패키지 더 적고 상업적 사용에 더 strict 라이선싱; conda-forge 가 30,000+ 패키지 가진 커뮤니티 channel, 라이선싱 string 없음.

Code

Miniconda install (Apple Silicon)·bash
# arm64 installer 다운
curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh

# installer 실행 (인터랙티브 — 디폴트 수락)
bash Miniconda3-latest-MacOSX-arm64.sh

# Terminal 재시작 (또는 'source ~/.zshrc'), 검증
conda --version
# conda 24.x.x
디폴트 channel 을 conda-forge 로 전환·bash
# conda-forge 를 가장 높은 우선순위 channel 로 설정
conda config --add channels conda-forge
conda config --set channel_priority strict

# 검증
conda config --show channels
# channels:
#   - conda-forge
#   - defaults

External links

Exercise

Miniconda (또는 Miniforge) install, 'conda --version' 으로 검증, 'conda config --show channels'. 순서 잘못이면 (defaults 가 conda-forge 위) fix. niche 과학 패키지 install 하고 conda-forge 엔 있는데 defaults 엔 없는 날, 옳은 순서로 둔 거 다행.

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.