mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
27aa9a5c49
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
28 lines
720 B
Plaintext
28 lines
720 B
Plaintext
<Tabs groupId="python-pm" items={['Poetry', 'pip', 'conda']} default="Poetry">
|
|
<Tab value="Poetry">
|
|
```bash
|
|
poetry add copilotkit
|
|
# including support for crewai
|
|
poetry add copilotkit[crewai]
|
|
```
|
|
</Tab>
|
|
|
|
<Tab value="pip">
|
|
|
|
```bash
|
|
pip install copilotkit --extra-index-url https://copilotkit.gateway.scarf.sh/simple/
|
|
# including support for crewai
|
|
pip install copilotkit[crewai] --extra-index-url https://copilotkit.gateway.scarf.sh/simple/
|
|
```
|
|
</Tab>
|
|
|
|
<Tab value="conda">
|
|
```bash
|
|
conda install copilotkit -c copilotkit-channel
|
|
# including support for crewai
|
|
conda install copilotkit[crewai] -c copilotkit-channel
|
|
```
|
|
</Tab>
|
|
|
|
</Tabs>
|