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

# 설치

> CLI를 설치하고 타입캐스트 API 키로 인증합니다.

## 설치

<Tabs>
  <Tab title="Homebrew">
    ```bash theme={null}
    brew install neosapience/tap/cast
    ```
  </Tab>

  <Tab title="Go">
    ```bash theme={null}
    go install github.com/neosapience/cast@latest
    ```
  </Tab>
</Tabs>

## 로그인

로그인 명령을 실행한 뒤 타입캐스트 API 키를 입력합니다:

```bash theme={null}
cast login
```

키를 직접 전달할 수도 있습니다:

```bash theme={null}
cast login <api_key>
```

API 키는 [타입캐스트 API 콘솔](https://typecast.ai/developers/api)에서 발급받을 수 있습니다.

## 설치 확인

```bash theme={null}
cast "Hello, world!"
```

오디오가 재생되면 CLI를 사용할 준비가 끝난 것입니다.

<Tip>
  로컬 오디오 재생 대신 파일 생성을 확인하려면 `cast "Hello, world!" --out hello.wav`를 실행하세요.
</Tip>
