您有沒有想過,在實作AWS Lambda時,想要一一確認程式碼的運作情況?
您可能認為在 AWS 控制台上實現很痛苦,因為您必須執行 Lambda 函數並且每次都會花費成本。
因此,我將向您展示解決您煩惱的方法。
它是透過 Google Colab 和 AWS 整合實現的。
步驟如下:
Operating system | Default location and name of files |
---|---|
Linux and macOS | ~/.aws/config ~/.aws/credentials |
Windows | %USERPROFILE%.awsconfig %USERPROFILE%.awscredentials |
%USERPROFILE%.awscredentials
from google.colab import drive drive.mount('/content/drive')
import os config_file = "/content/drive/MyDrive/path/to/file/config" os.environ['AWS_CONFIG_FILE'] = config_file credentials_file = "/content/drive/MyDrive/path/to/file/credentials" os.environ['AWS_SHARED_CREDENTIALS_FILE'] = credentials_file
!pip install boto3
第四步:安裝boto3別忘了!您應該配置適當的 IAM 角色來>操作 AWS 資源。
注意
這樣就可以在Google Colab上簡單靈活地實作Lambda函數了。
以上是如何使用 botoith Google Colab 和 AWS 集成的詳細內容。更多資訊請關注PHP中文網其他相關文章!