0
0

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 1 year has passed since last update.

[Ansible] 既に入ってるのに"ERROR! The ec2 dynamic inventory plugin requires boto3 and botocore."と言われたときの対処方法。

Posted at

はじめに

aws_ec2インベントリプラグインを使いたくて、boto3とbotocoreをインストール。

$ pip install boto3 botocore # boto3とbotocoreをインストール

いざansibleコマンドをすると、以下のようなことを言われる。

ERROR! The ec2 dynamic inventory plugin requires boto3 and botocore.

boto3とbotocoreをインストールしろとのこと。
ええ……。

解決方

yumでboto3をインストールします。

$ sudo yum install python-boto3

botocoreに関してはインストールしなくても大丈夫です。
以下を実行しても、「既に入ってるぜ?」と言われます。どっちだよ。

$ sudo yum install python-botocore 

おわりに

githubのissueを見ると同じ話題でそれなりに盛り上がっていました。
遭遇しやすいエラーなのかもしれません。

0
0
1

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?