企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
debian环境 官网地址 ``` http://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#basics-what-will-be-installed ``` Latest Releases ViaApt (Debian) Debian users may leverage the same source as the Ubuntu PPA. Add the following line to /etc/apt/sources.list: ``` deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main ``` Then run these commands: ``` $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 $ sudo apt-get update $ sudo apt-get install ansible ``` 安装命令集合 ``` echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" >> /etc/apt/sources.list apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 apt-get update apt-get install ansible -y ansible --version ```