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

12th Mar 2018, 12:36 PM
Shadept
Shadept - avatar
11 odpowiedzi
+ 2
so i fixed it by installing miniGW
13th Mar 2018, 3:18 PM
Shadept
Shadept - avatar
+ 2
If (this is your first time with code blocks):{ follow a tutorial //it's too much to write }
12th Mar 2018, 12:46 PM
Amine Trabelsi
Amine Trabelsi - avatar
+ 2
uninstall it then try again
12th Mar 2018, 12:54 PM
Amine Trabelsi
Amine Trabelsi - avatar
+ 1
google the Error
12th Mar 2018, 1:17 PM
Amine Trabelsi
Amine Trabelsi - avatar
+ 1
Can you provide us with more detail?
13th Mar 2018, 1:35 AM
Ben Allen (Njinx)
Ben Allen (Njinx) - avatar
+ 1
@nonzyro I think he's using windows.
13th Mar 2018, 1:36 AM
Ben Allen (Njinx)
Ben Allen (Njinx) - avatar
+ 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.
13th Mar 2018, 9:26 PM
non
0
@Amine Trabelsi but it cannot fix now
12th Mar 2018, 12:53 PM
Shadept
Shadept - avatar
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
12th Mar 2018, 1:02 PM
Shadept
Shadept - avatar
0
ok now i fixed the gnu error but it fails everytime i try to build it
12th Mar 2018, 1:27 PM
Shadept
Shadept - avatar
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.
12th Mar 2018, 10:35 PM
non