AWS Magic
develop
develop
  • Welcome
  • Lambda
    • Local Lambda Development
      • Prerequisites
      • Starter Kit or Manual?
      • Use Starter Kit
      • Manual Configuration
        • Environment Variables
        • Python Setup
        • Node Setup
        • Source & Config Files
        • Test The Configuration
      • Run Lambda in VSCode
      • Debug Lambda in VSCode
      • Deploy Lambda Function
    • Lambda & API GW
  • TypeScript
    • Promises
Powered by GitBook
On this page
  • Create the virtual environment for python.
  • Update PIP
  • Install AWS CLI

Was this helpful?

  1. Lambda
  2. Local Lambda Development
  3. Manual Configuration

Python Setup

Create the virtual environment for python.

$ cd $WORKSPACE
$ python3 -m venv .venv
$ source .venv/bin/activate

Update PIP

$ pip install --upgrade pip

Install AWS CLI

$ pip install --upgrade awscli
PreviousEnvironment VariablesNextNode Setup

Last updated 5 years ago

Was this helpful?