Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/examples/cdk/deploy_to_ec2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r ./requirements.txt

# Install Python dependencies for the app distribution
pip install -r requirements.txt --platform manylinux2014_aarch64 --target ./packaging/_dependencies --only-binary=:all:
pip install -r requirements.txt --python-version 3.12 --platform manylinux2014_aarch64 --target ./packaging/_dependencies --only-binary=:all:
```

2. Bootstrap your AWS environment (if not already done):
Expand Down
3 changes: 0 additions & 3 deletions docs/examples/cdk/deploy_to_lambda/.mise.toml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/examples/cdk/deploy_to_lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install Python dependencies for the local development
pip install -r requirements.txt
# Install Python dependencies for lambda with correct architecture
pip install -r requirements.txt --platform manylinux2014_aarch64 --target ./packaging/_dependencies --only-binary=:all:
pip install -r requirements.txt --python-version 3.12 --platform manylinux2014_aarch64 --target ./packaging/_dependencies --only-binary=:all:
```

2. Package the lambda:
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/deploy/deploy_to_amazon_ec2.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ To deploy your agent to EC2:
npx cdk bootstrap

# Package Python dependencies for the target architecture
pip install -r requirements.txt --platform manylinux2014_aarch64 --target ./packaging/_dependencies --only-binary=:all:
pip install -r requirements.txt --target ./packaging/_dependencies --python-version 3.12 --platform manylinux2014_aarch64 --only-binary=:all:

# Deploy the stack
npx cdk deploy
Expand Down
Loading