ansible:安裝篇

ansible是大名鼎鼎的自動化部署工具,結合docker和jenkins,能夠快速搭建一套自動化部署方案,本文主要介紹如何快速安裝ansible。python

ansible安裝前提:python2.7.x已安裝docker

1. pip安裝

centosubuntu

yum -y install epel-release
yum -y install python-pip

ubuntucentos

apt update
apt install python-pip

 

2. 查看pip版本

[root@localhost ~]# pip -V
pip 8.1.2 from /usr/lib/python2.7/site-packages (python 2.7)

 

pip已經安裝成功app

 

3. 安裝ansible2.0.0版本

pip install ansible==2.0.0

安裝報錯: src/MD2.c:31:20: fatal error: Python.h: No such file or directory,這裏缺乏python開發包python2.7

4. 安裝python-dev包

centos工具

yum install python-devel

ubuntu測試

apt-get install python-dev

 

 

5. 繼續安裝ansible2.0.0

報以下錯誤spa

configure: error: in `/tmp/pip-install-I65EIU/pycrypto':  .net

configure: error: no acceptable C compiler found in $PATH

須要系統安裝gcc編譯器

centos

yum  install -y gcc 

ubuntu

apt install -y gcc 

 

而後再執行pip install ansible==2.0.0,就安裝成功了。

 

博主:測試生財

座右銘:用測試完成原始積累,用投資奔向財務自由

csdn:https://blog.csdn.net/ccgshigao

博客園:https://www.cnblogs.com/qa-freeroad/

51cto:https://blog.51cto.com/14900374

相關文章
相關標籤/搜索