removed build-essential from redhat install

This commit is contained in:
Sam Germain 2021-11-04 00:44:58 -06:00
parent d1e2a53267
commit 5b9a168ca9
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ function install_debian() {
# Install bot RedHat_CentOS
function install_redhat() {
sudo yum update
sudo yum install -y gcc gcc-c++ build-essential autoconf libtool pkg-config make wget git $(echo ${PYTHON}-devel | sed 's/\.//g')
sudo yum install -y gcc gcc-c++ make autoconf libtool pkg-config wget git $(echo ${PYTHON}-devel | sed 's/\.//g')
install_talib
}