Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

ansible 4 가 2021년 5월에 릴리스되었습니다.릴리스되었고 python 3.8 이상 버전을 필요로 합니다.


Code Block
languagebash
$ yum install python3.8-pip


그런데 코어 모듈 이름을 ansible-base 에서 ansible-core 로 변경해서 업그레이드하려면 예전 버전을 삭제하고 새로 설치해야 합니다.

Code Block
languagebash
pip uninstall ansible-base
pip install ansible


헷갈리게 --version 옵션을 주면 ansible-core 는 2.11 이라고 나옵니다.

Code Block
languagebash
$ ansible --version