update install script and label
This commit is contained in:
19
install.ps1
Normal file
19
install.ps1
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# uv와 git이 사전에 설치되어 있다고 가정
|
||||||
|
|
||||||
|
# 가상환경 생성
|
||||||
|
uv venv
|
||||||
|
|
||||||
|
# 가상환경 활성화 (PowerShell)
|
||||||
|
.\venv\Scripts\Activate.ps1
|
||||||
|
|
||||||
|
# PyTorch 설치 (CUDA 12.8 버전)
|
||||||
|
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
|
||||||
|
|
||||||
|
# Facebook Research SAM 모델 설치
|
||||||
|
uv pip install git+https://github.com/facebookresearch/segment-anything.git
|
||||||
|
uv pip install git+https://github.com/facebookresearch/sam2.git
|
||||||
|
|
||||||
|
# 기타 필요한 패키지 설치
|
||||||
|
uv pip install -r requirements.txt
|
||||||
|
|
||||||
|
Write-Host "설치가 완료되었습니다."
|
||||||
21
install.sh
Normal file
21
install.sh
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# uv와 git이 사전에 설치되어 있다고 가정
|
||||||
|
|
||||||
|
# 가상환경 생성
|
||||||
|
uv venv
|
||||||
|
|
||||||
|
# 가상환경 활성화
|
||||||
|
source ./venv/bin/activate
|
||||||
|
|
||||||
|
# PyTorch 설치 (CUDA 12.8 버전)
|
||||||
|
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
|
||||||
|
|
||||||
|
# Facebook Research SAM 모델 설치
|
||||||
|
uv pip install git+https://github.com/facebookresearch/segment-anything.git
|
||||||
|
uv pip install git+https://github.com/facebookresearch/sam2.git
|
||||||
|
|
||||||
|
# 기타 필요한 패키지 설치
|
||||||
|
uv pip install -r requirements.txt
|
||||||
|
|
||||||
|
echo "설치가 완료되었습니다."
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
#python 3.11 이상과 uv, git, cuda 12.8 버전이 사전에 설치되어 있어야 합니다.
|
||||||
|
|
||||||
uv venv
|
uv venv
|
||||||
./venv/bin/activate
|
./venv/bin/activate
|
||||||
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
|
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
"PRODUCT": 1,
|
"ROAD": 1,
|
||||||
"SEPARATOR": 2
|
"BUILDING": 2,
|
||||||
|
"TREE": 3,
|
||||||
|
"VEHICLE": 4
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user