From 1f9337feca98e3f1d57ada9d6ad483fc264887a9 Mon Sep 17 00:00:00 2001 From: yumaojun <719118794@qq.com> Date: Mon, 29 Feb 2016 10:58:31 +0800 Subject: [PATCH] =?UTF-8?q?fix=20(install.py):=20=E3=80=80compatible=20fed?= =?UTF-8?q?ora?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. mysql-python编译不过, 添加rpm-build 依赖 --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index 234a9235f..1f174f915 100755 --- a/install/install.py +++ b/install/install.py @@ -215,7 +215,7 @@ class PreSetup(object): def _depend_rpm(self): color_print('开始安装依赖包', 'green') if self._is_redhat: - bash('yum -y install git python-pip mysql-devel gcc automake autoconf python-devel vim sshpass lrzsz readline-devel') + bash('yum -y install git python-pip mysql-devel rpm-build gcc automake autoconf python-devel vim sshpass lrzsz readline-devel') if self._is_ubuntu: bash("apt-get -y --force-yes install git python-pip gcc automake autoconf vim sshpass libmysqld-dev python-all-dev lrzsz libreadline-dev")