0
Can someone help me how to install a programing software for c++
so like i think ive messed up codeblock and i dont really understand everything please help
14 Answers
+ 2
so i fixed it by installing miniGW
+ 2
If (this is your first time with code blocks):{
follow a tutorial
//it's too much to write
}
+ 2
uninstall it then try again
+ 1
google the Error
+ 1
Can you provide us with more detail?
+ 1
@nonzyro I think he's using windows.
+ 1
It would seem Ben's right, it is Windows OP's using.
And OP, it's "MinGW" not "miniGW".
PS: I thought CB for Windows fetched and installed MinGW after CB was installed. Haven't used Windows in a while though.
0
@Amine Trabelsi but it cannot fix now
0
@Amine Trabelsi ok i tried to uninstall and after installation it gives this error always: "environment error: cant find compiler executable in your configured search path's for GNU GCC Compiler
0
ok now i fixed the gnu error but it fails everytime i try to build it
0
Assuming Linux by the error. Assuming Debian deriv like Ubuntu. You may not have g++ installed (isn't installed on my system) by default, or gcc. Codeblocks lists both as recommends _but not_ dependencies. Hence you may have installed CB without a compiler.
In your console (terminal emulator)
$ rm -r ~/.codeblocks
# apt-get purge codeblocks
# apt-get install gcc g++ make
# apt-get install codeblocks
You could probably just install gcc, g++, and make, but we wipe all settings in case.
You can optionally install build essential instead of the above three tools, but you'll get software you're unlikely to use as well.