프로그래밍 개발(Development)/Python

UV 설치 방법

술취한둘리 2025. 4. 17. 16:12
반응형

uv에 대한 설명은 아래의 글을 참조

2025.04.17 - [프로그래밍 개발(Development)/Python] - uv 는 무엇일까?

 

uv 는 무엇일까?

Python 생태계에서 패키지 관리 도구는 오래도록 pip와 venv가 사실상의 표준으로 자리를 잡아왔다. 그러나 대규모 프로젝트, 반복적인 CI/CD, 빠른 의존성 해석이 필요한 현대 개발 환경에서는 기존

choco-life.tistory.com

 

UV 설치 방법

  • macOS and Linux
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
  • Windows
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

 

from PyPI

# With pip.
pip install uv
# Or pipx.
pipx install uv

 

자료 출처

https://github.com/astral-sh/uv

 

GitHub - astral-sh/uv: An extremely fast Python package and project manager, written in Rust.

An extremely fast Python package and project manager, written in Rust. - astral-sh/uv

github.com

 

uv 설치 확인

버전 조회로 설치 유무 확인

uv --version
반응형