Mac
Instructions on how to uninstall ansible on a mac. I goofed and I didn't install it by pip and I can't figure out what I did. What are all the files I need to delete so I can get a clean environment to reinstall ansible correctly through pip?
You probably installed it via homebrew so you can just
brew uninstall ansible
and then pip install ansible
I also just ran sudo -H pip uninstall ansible
and reran the install. It seemed to work.
Perfect worked perfectly for me
Most helpful comment
I also just ran
sudo -H pip uninstall ansible
and reran the install. It seemed to work.