首页 > 解决方案 > AWS Python 层在本地运行

问题描述

如何在本地运行带有层的 AWS Lambda 函数?

我的环境:

    +---.aws-sam
        ....
    +---test
    |       app.py
    |       requirements.txt
    |       
    +---dependencies
    |   \---python
    |           constants.py
    |           requirements.txt
    |           sql.py
    |           utils.py
testFunc:
    Type: AWS::Serverless::Function
    Properties:
      CodeUri: teest/
      Handler: app.test
      Runtime: python3.6
      FunctionName: testFunc
      Events:
        test:
          Type: Api
          Properties:
            Path: /test
            Method: ANY
      Layers:
        - !Ref TempConversionDepLayer

  TempConversionDepLayer:
        Type: AWS::Serverless::LayerVersion
        Properties:
            LayerName: Layer1
            Description: Dependencies
            ContentUri: dependencies/
            CompatibleRuntimes:
              - python3.6
              - python3.7
            LicenseInfo: 'MIT'
            RetentionPolicy: Retain

我可以正确部署该功能并在 AWS 上运行它运行良好,每当我尝试在本地运行该功能时,它都会失败并显示错误消息:

`Unable to import module 'app': No module named 'sql'`

我试图阅读有关 Layers 和 Pycharm 的所有可能资源,但没有任何帮助。

有人可以帮忙吗?

谢谢,

标签: pythonamazon-web-servicesaws-lambdalayer

解决方案


通过将符号链接添加到另一个包含图层代码的目录,我能够在 PyCharm 中解决这个问题


推荐阅读