Tag Archives: pip3.9

Installing ansible with pip

First, we need to ensure that python3.9 and pip are available.   if not available, please read my install pyhon3.9 post below. if so, pip is available proceed installation step but please note that do not install ansible on root user. pip3.9 install ansible Verifying ansible installation. ansible –version   As you can see, the Read More

Posted in Ansible, Linux | Tagged , , , , , | Leave a comment

Installing python3.9 and pip on CentOS 7

Firstly, install the requsite packages. sudo yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel   Once that is done, download python3.9 or newer version. wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz Extract it. tar -xvf Python-3.9.6.tgz Move into the directory and configure with following command.

Posted in Linux, Uncategorized | Tagged , , , , , | Leave a comment