!!! tip
githubkit supports **both pydantic v1 and v2**, but pydantic v2 is recommended. If you have encountered any problems with pydantic v1/v2, please file an issue.
=== "poetry"
```bash
poetry add githubkit
```
=== "pdm"
```bash
pdm add githubkit
```
=== "uv"
```bash
uv add githubkit
```
=== "pip"
```bash
pip install githubkit
```
If you want to auth as github app, you should install auth-app
extra dependencies:
=== "poetry"
```bash
poetry add githubkit[auth-app]
```
=== "pdm"
```bash
pdm add githubkit[auth-app]
```
=== "uv"
```bash
uv add githubkit[auth-app]
```
=== "pip"
```bash
pip install githubkit[auth-app]
```
You can install fully featured githubkit with all
extra dependencies:
=== "poetry"
```bash
poetry add githubkit[all]
```
=== "pdm"
```bash
pdm add githubkit[all]
```
=== "uv"
```bash
uv add githubkit[all]
```
=== "pip"
```bash
pip install githubkit[all]
```