Day 8: Install Ansible task failed even though installed ansible 4.7.0 (required version as per the task)

I am attaching the screenshot for ready reference, is am missing any thing here.

Did you install ansible using pip install?

It is likely the grader is checking for it to be installed as a Linux system package, i.e. using yum or dnf

I used pip install as per the task requirement, Thanks

whats likely happening in that you are installing pip the right way but is not being setup to be globally accessible. you just need to use sudo before running the command. like this: sudo pip3 install ansible==4.7.0

1 Like

Thank you, it worked, able to jump for the next tasks

1 Like