rhel8 python3环境下 安装ansible

  1. 安装 python3 python3-setuptools python3-pip3
    用yum或者直接用8的媒体使用rpm都行
    例如yum: sudo dnf install python3 -y
  2. 这一步时间比较长,耐心等待全部完成(要提前安装git包):

    git clone https://github.com/ansible/ansible.git

  3. pip3 install --user ansible

  4. mkdir -p ~/.ssh

    chmod 700 ~/.ssh

    ssh-keygen -t rsa

  5. yum install http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm

  6. 打开以下网址下载源码,后解压,然后.进行安装三部曲
    /config; make; make install:
    https://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz/download
  7. pip3 install requests

    pip3 install pywinrm

你可能感兴趣的:(笔记)