Error while installing AWX

HI,

I am getting an error while installing AWX in my local machine.
I am following the instruction given in “https://github.com/ansible/awx/blob/devel/INSTALL.md#postgresql-1
I am using docker/docker-compose to unstall.

TASK [local_docker : Activate postgres container] ****************************************************************************************************************************************

fatal: [localhost]: FAILED! => {“changed”: false, “msg”: “Failed to import docker-py - No module named requests.exceptions. Try pip install docker-py”}

to retry, use: --limit @/Users/arnab/Documents/Ansible/trialPlaybooks/AWX/AnsibleAWXRepo/awx/installer/install.retry

Amab,

How did you install docker-py? did you use a virtualvenv ?

I used the below:

pip install docker-py

You may also need to:

pip uninstall -y requests
pip install requests

Sounds like you may have a broken requests installation.

but, did you use a virtualenv/pipenv or pip install --user or at the root level ?

Used the install command at root level !!