Error while setting up up prodi.py

we are facing the following error while setting up prodigy
pip install prodigy-1.6.1-cp35.cp36.cp37-cp35m.cp36m.cp37m-linux_x86_64.whl

Error
Running setup.py bdist_wheel for mmh3 … error
Complete output from command /opt/deployment/venv/bin/python3.7 -u -c “import setuptools, tokenize;file=’/tmp/pip-install-lqtac_lz/mmh3/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(’\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” bdist_wheel -d /tmp/pip-wheel-iwif31bh --python-tag cp37:
running bdist_wheel
running build
running build_ext
building ‘mmh3’ extension
creating build
creating build/temp.linux-x86_64-3.7
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.7m -c mmh3module.cpp -o build/temp.linux-x86_64-3.7/mmh3module.o
gcc: error trying to exec ‘cc1plus’: execvp: No such file or directory
error: command ‘gcc’ failed with exit status 1


Failed building wheel for mmh3

Running setup.py clean for mmh3
Failed to build mmh3
Installing collected packages: mmh3, prodigy
Running setup.py install for mmh3 … error
Complete output from command /opt/deployment/venv/bin/python3.7 -u -c “import setuptools, tokenize;file=’/tmp/pip-install-y9hb5wke/mmh3/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(’\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record /tmp/pip-record-eqd__3xn/install-record.txt --single-version-externally-managed --compile --install-headers /opt/deployment/venv/include/site/python3.7/mmh3:
running install
running build
running build_ext
building ‘mmh3’ extension
creating build
creating build/temp.linux-x86_64-3.7
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.7m -c mmh3module.cpp -o build/temp.linux-x86_64-3.7/mmh3module.o
gcc: error trying to exec ‘cc1plus’: execvp: No such file or directory
error: command ‘gcc’ failed with exit status 1

----------------------------------------

Command “/opt/deployment/venv/bin/python3.7 -u -c “import setuptools, tokenize;file=’/tmp/pip-install-y9hb5wke/mmh3/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(’\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record /tmp/pip-record-eqd__3xn/install-record.txt --single-version-externally-managed --compile --install-headers /opt/deployment/venv/include/site/python3.7/mmh3” failed with error code 1 in /tmp/pip-install-y9hb5wke/mmh3/

Hi! This looks like a problem with your compiler – can you check that you have gcc and python-dev headers installed correctly?

These are the packages we install in our testing image, for Ubuntu 18.04. Not all of these are necessary, but this should definitely cover everything:

sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install -y unzip libssl-dev zlib1g-dev libbz2-dev \
    libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
    xz-utils python-pip python-virtualenv python3-pip python3-venv \
python-dev python3-dev libopenblas-base libopenblas-dev

Sorry we guys we are using centos it seems, can you update it with respect centos 7.5-1804

I don’t have access to a CentOS machine, sorry. I’m sure you can find the equivalent packages with yum? The most important one will be the equivalent of build-essential.