配置 yum 源
yum install wget rm -f /etc/yum.repos.d/* curl -o /etc/yum.repos.d/Centos-7.repo http://mirrors.aliyun.com/repo/Centos-7.repo curl -o /etc/yum.repos.d/epel-7.repo https://mirrors.aliyun.com/repo/epel-7.repo
安装 pip 软件包
yum -y install python-pip
清空缓存
yum clean all
安装 pexpect 模块
pip install pexpect
如果系统报 pip 版本过低,执行下面命令更新
pip install --upgrade pip
再安装 pexpect 模块
pip install pexpect