0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

EBCLIのインストール

Posted at

EBCLIのインストールについて公式ドキュメントを簡単にまとめる

EB CLIとは

  • AWS Elastic Beanstalkのコマンドラインインターフェイス
  • ローカルリポジトリからの環境の作成、更新、およびモニタリングを簡素化

EB CLIのインストール

セットアップスクリプトの利用(推奨)

GitHubで入手できるセットアップスクリプトを使用する
このスクリプトは、Pythonとpipを含めて、EB CLIおよびその依存関係をインストールする
このスクリプトは、EB CLI用の仮想環境を作成する
インストール手順はGitHubを参照

GitHubからのインストール

前提条件

Gitがインストールされている
Pythonでは、オペレーティングシステムごとの条件を満たす必要がある

インストール

リポジトリをクローン

git clone https://github.com/aws/aws-elastic-beanstalk-cli-setup.git

手動インストール

ここではmacOSのインストール(homebrew)

  1. Homebrewが最新バージョンであることを確認
brew update

2. brew install awsebcliを実行

brew install awsebcli

3. EB CLIが正しくインストールされたことを確認

eb —version

このとき、SyntaxWarningが出る場合以下を実行すれば解消される

pip uninstall jmespath && pip3 install jmespath
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?