LoginSignup
4
3

More than 3 years have passed since last update.

WindowsにCDK環境構築する手順(Python)

Last updated at Posted at 2020-02-05

CDK環境(python)を整えるための自分用メモです。

環境構築

・AWS CLI導入
https://docs.aws.amazon.com/ja_jp/cli/latest/userguide/install-windows.html#install-msi-on-windows

・AWS IAM アクセスキー設定
コマンドプロンプトで下記コマンド実行
aws configure

※事前にアクセスキーとシークレットキーを用意すること

・Node.js8.0以上導入
https://nodejs.org/ja/

・CDK導入
コマンドプロンプトで下記コマンド実行
npm install -g aws-cdk

・Python3導入
https://www.python.org/downloads/windows/
⇒導入後、「python」コマンドが利用できること(Pathが通っていること)を確認する

・エディタ(VisualStudio Code+Python拡張)
https://code.visualstudio.com

・git導入(オプション)
https://git-scm.com/download/win

※あとは下記に従えばCDKのコーディング開始できる
https://cdkworkshop.com/30-python.html

参考URL

■概要理解資料
https://pages.awscloud.com/rs/112-TZM-766/images/B-3.pdf

■WorkShop
・英語
https://cdkworkshop.com/30-python.html

・日本語:ダウンロード版)
http://bit.ly/cdkworkshopjp

■リファレンス
https://docs.aws.amazon.com/cdk/api/latest/python/index.html

■サンプルコード
https://github.com/aws-samples/aws-cdk-examples

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3