Swarms 설치 — pip, uv, poetry

Swarms 설치

Swarms 는 pip, uv, poetry, 또는 소스로 설치할 수 있습니다. Python 3.10 이상이 필요합니다.

출처: Installation — 공식문서

설치 방법

# pip
pip3 install -U swarms
# 또는 uv (권장, Rust 기반 고속)
uv pip install swarms

검증

python -c "import swarms; print(swarms.__version__)"

원하는 버전 / extras

pip3 install swarms==1.0.0            # 특정 버전
pip3 install swarms[all]              # 모든 선택 의존성
pip3 install swarms[tools]            # 도구 통합
pip3 install swarms[ui]               # 웹 UI 컴포넌트
pip3 install swarms[dev]              # 개발 도구

가상환경(권장)

python -m venv swarms-env
source swarms-env/bin/activate      # (Windows: swarms-env\Scripts\activate)
pip install swarms

더 알아보기