解决报错:no acceptable C compiler found in $PATH when installing python

gcc compiler is not in your $PATH

it means either you dont have gcc installed or it's not in your $PATH variable

to install gcc use this: (run as root)

redhat base:

yum groupinstall "Development tools"

Debian base:

apt-get install build-essential

猜你喜欢

转载自blog.csdn.net/tengxing007/article/details/80062074