Are you getting following error while installing any package on Ubuntu ?
“Ubuntu configure: error: C++ compiler cannot create executables”
8K96N4QFNNAY
This error comes when you run ./configure on any of the downloaded packages and if you dont have c++ installed on your computer.
So to solve this problem, you should install “g++” on your ubuntu machine.
How to install g++ library in ubuntu ?
Try following command
sudo apt-get install g++
View Comments (1)
thanx it help my homework :)