ServerlessFrameworkのインストールから基本的な設定・操作方法を確認していきたいと思います。 今回はAWSをプロバイダとしてPython3でサービスを作成します。 ■ インストール # Serverless Frameworkのインストール node.jsのインストールはnvmで行います。 # nvm インストール # https://github.com/nvm-sh/nvm#installing-and-updating curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash # 最新のltsをインストールしてグローバルに設定 nvm install --lts nvm use --lts # インストールされているか確認 node -v npm --version