Well, here we go again...
I reformatted a partition, wrecked my Ubuntu installation, reinstalled it alongside the old one. And now I can't compile my programs. The file compilelog.txt shows: sh: 1: g++: not found
I thought I had installed g++ using $ sudo apt-get remove g++
...HUNDREDS of files appeared to be installed, but the IDE still fails to compile. What am I missing this time???
Ouch! Reformat and reinstall is never fun...
Ashish is correct. That command will remove. But if memory serves, a fresh installation, has not get been configured to compile source code.
This is the process that I used:
(a fresh install of the OS is assumed)
Start a Terminal.
sudo apt-get update (enter)
sudo apt-get install build-essential (enter) - (installs tools for building source code - including g++)
sudo apt-get install freeglut3-dev (enter) - (install development libraries and headers for freeglut)
Navigate to where the QB64 tarball was extracted)
From with the directory: ./setup_lnx.sh (enter)
If the compilation finishes successfully, QB64 will automatically start for the first time.
(This works for Linux Mint and Linux Peppermint - Both are Ubuntu based)
J