- Home
- Course Detail
regularpython@gmail.com
You are now watching:
Pycharm + AWS Cloud Integration / of Pycharm & AWS Cloud Integration Part-1
PyCharm + AWS Cloud Integration: Installation Steps
1️⃣ Install PyCharm
Download and install PyCharm (Community or Professional):
3️⃣ Configure AWS CLI
Run the following command and enter your access keys:
aws configure
You will be asked for:
- AWS Access Key ID
- AWS Secret Access Key
- Default region (e.g.,
us-east-1) - Output format (e.g.,
json)
4️⃣ Install AWS SAM CLI
Install SAM CLI (for building and deploying Lambda functions):
sam --version
5️⃣ Initialize a New Lambda Project
Create a new SAM application:
sam init
Select:
- Template: AWS Quick Start Templates
- Runtime: Python 3.x
- Project name: your-lambda-app
6️⃣ Build and Deploy the Lambda App
Build your Lambda app:
sam build
Deploy with guided setup:
sam deploy --guided
7️⃣ View in AWS Console
Go to AWS Lambda Console to see your deployed function.