Rahul
Rahul

Reputation: 11679

How to execute programs from geany using the GUI?

well i recently installed geany .. the ide is great and worked great for python programs , but when i try executing c/c++ programs from the executed button i get an error saying ./geany_run_script.sh: 5: ./rsa2: not found ( rsa is the name of my program ) well i did try googling out but could find a case like mine.

Upvotes: 1

Views: 7029

Answers (2)

Manish
Manish

Reputation: 2337

I tried doing F8 and F5 and the problem was same as yours. But then i did build, compile and run and it worked.(This post may help someone !!)

Upvotes: 1

moebius_eye
moebius_eye

Reputation: 584

If you want to run a program, you need to compile it. By default, the compile key in geany is F8. Then, you can run the program. (F5) You can define flags in project>properties (click on the "construct" tab).

Upvotes: 2

Related Questions