UV 사용 시
https://docs.astral.sh/uv/getting-started/installation/
[ 설치 코드 ]
powershell -ExecutionPolicy ByPass -c "irm <https://astral.sh/uv/install.ps1> | iex"
[ 환경 변수 세팅 ]
$env:Path = "C:\\Users\\Admin\\.local\\bin;$env:Path"
[ test ]
uv venv --python 3.11
ls
ls -a # venv 폴더 확인
source .venv/Scripts/activate # 가상환경 실행
[ library 통합 설치 ]