I have installed Ansible via pip3, but I can't find the Ansible commands (ansible --version, ansible-playbook, etc.)
Here's the listing that shows that Ansible is installed via pip3:
:~# pip3 list | grep ansible
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
ansible (3.1.0)
ansible-base (2.10.7)
But I can find no file or what so ever in /usr/bin and the commands are not found:
:~/.ansible# ls -ltrha
total 12K
drwx------ 3 root root 4.0K Feb 3 11:42 .
drwx------ 3 root root 4.0K Mar 19 16:01 tmp
drwx------ 8 root root 4.0K Mar 22 15:34 ..
Do I need to configure something? Is my installation done improperly?
I use Debian GNU/Linux 9 (stretch)