Computer: MacBook Pro mid 2012, running El Capitan 10.11.4
Python version 2.7.10
I\'ve been trying to install ansible from source, and I\'ve run these two co
Had the same issue. Got past it using @FranMowinckel's answer.
First I typed:
pip --version
it outputted python 3. But, when I tried:
sudo python -m pip install pyyaml
I got an error saying:
Error: No module named pip
So, finally running:
sudo easy_install pip
everything worked fine. Go back and run:
sudo python -m pip install pyyaml
(you may have to run this with all the other modules as well) Now you should finally be able to run your initial command which failed.