> ## Documentation Index
> Fetch the complete documentation index at: https://docs.proact0.org/llms.txt
> Use this file to discover all available pages before exploring further.

# 설치

> Act Operator를 설정하고 첫 Act 프로젝트를 스캐폴딩하세요.

사전 준비사항을 점검하고 첫 Act 프로젝트를 만듭니다.

## 사전 준비

* Python **3.11+**
* uv 설치

Act Operator는 uv 기반으로 스캐폴딩을 진행하므로 uv가 필요합니다.
아래에서 환경을 확인하고 첫 프로젝트를 생성하세요.

환경을 확인하세요:

```bash theme={null}
python --version
uv --version
```

## 새 Act 프로젝트 생성

프로젝트를 만들 디렉터리에서 실행하세요:

```bash theme={null}
uvx --from act-operator act new
```

Act Operator가 프로젝트 세부 정보를 묻고, 초기 Cast가 포함된 구조화된 Act를 생성합니다.

## 다음 단계

<Columns cols={2}>
  <Card title="빠른 시작" icon="rocket" href="/ko/act-operator/python/quickstart">
    0에서 동작하는 Cast까지 진행하기
  </Card>

  <Card title="템플릿 아키텍처" icon="sitemap" href="/ko/act-operator/python/template-architecture">
    생성된 구조를 이해하기
  </Card>
</Columns>
