2
0
mirror of https://github.com/frappe/bench.git synced 2025-02-11 07:08:30 +00:00

[centos] install.py

This commit is contained in:
Anand Doshi 2016-03-18 15:43:07 +05:30
parent 141867bc8d
commit 124abbd725

View File

@ -11,11 +11,12 @@ def install_bench(args):
# pre-requisites for bench repo cloning
run_os_command({
"apt-get": "sudo apt-get update",
"yum": "yum groupinstall 'Development Tools'"
})
success = run_os_command({
"apt-get": "sudo apt-get install -y git build-essential python-setuptools python-dev python-pip",
"yum": "sudo yum install -y git",
"yum": "sudo yum install -y git python-setuptools python-devel python-pip",
"brew": "brew install git"
})